{"id":592,"date":"2023-06-01T15:43:39","date_gmt":"2023-03-16T18:53:22","guid":{"rendered":"https:\/\/dev.twentytwo.digital\/ukbodytalk\/?page_id=592"},"modified":"2024-05-28T11:39:16","modified_gmt":"2024-05-28T10:39:16","slug":"meet-the-team","status":"publish","type":"page","link":"https:\/\/dev.twentytwo.digital\/ukbodytalk\/about-us\/meet-the-team\/","title":{"rendered":"Meet The Team"},"content":{"rendered":"<style>\/*\nConverts a pixel value to matching rem value. *Any* value passed, regardless of unit, is assumed to be a pixel value. By default, the base pixel value used to calculate the rem value is taken from the `$global-font-size` variable.\n@access private\n@param {Number} $value - Pixel value to convert.\n@param {Number} $base [null] - Base for pixel conversion.\n@returns {Number} A number in rems, calculated based on the given value and the base pixel value. rem values are passed through as is.\n*\/\n\/*\nRemoves the unit (e.g. px, em, rem) from a value, returning the number only.\n@param {Number} $num - Number to strip unit from.\n@returns {Number} The same number, sans unit.\n*\/\n\/*\nConverts one or more pixel values into matching rem values.\n@param {Number|List} $values - One or more values to convert. Be sure to separate them with spaces and not commas. If you need to convert a comma-separated list, wrap the list in parentheses.\n@param {Number} $base [null] - The base value to use when calculating the `rem`. If you're using Foundation out of the box, this is 16px. If this parameter is `null`, the function will reference the `$base-font-size` variable as the base.\n@returns {List} A list of converted values.\n*\/\n\/**\n * Contrast\n *\/\n\/**\n*\tBasic link hover function\n*\/\n\/*\n* Fluid Type function\n*\/\n\/*\n* Breakpoint Handler\n* @usage: respond-to('tablet_small') { ... } to target 'tablet_small' and aboe\n*\/\n\/*\n* Grid Layout\n*\/\n\/*\n* Responsive Type mixins\n*\/\n\/*\n* Helpers\n*\/\n.hero {\n  position: relative;\n  background-color: var(--black);\n  overflow: hidden;\n}\n.hero:before, .hero:after {\n  content: \"\";\n  position: absolute;\n  z-index: 3;\n  pointer-events: none;\n  -webkit-user-select: none;\n     -moz-user-select: none;\n      -ms-user-select: none;\n          user-select: none;\n}\n@media only screen and (min-width: 992px) {\n  .hero.tall-landing-hero {\n    height: 80vh;\n  }\n}\n.hero:before {\n  top: 0;\n  left: 0;\n  right: 0;\n  border-radius: 40px 0 0;\n  border-top: 1px solid rgba(255, 255, 255, 0.3);\n  border-left: 1px solid rgba(255, 255, 255, 0.3);\n}\n@media (min-width: 769px) {\n  .hero:before {\n    bottom: 30%;\n    left: 35px;\n  }\n}\n.hero:after {\n  bottom: 1%;\n  height: 29%;\n  width: 50px;\n  left: -14px;\n  border-radius: 0 0 40px 0;\n  border-right: 1px solid rgba(255, 255, 255, 0.3);\n  border-bottom: 1px solid rgba(255, 255, 255, 0.3);\n  display: none;\n}\n@media (min-width: 769px) {\n  .hero:after {\n    display: block;\n  }\n}\n.hero__subheading {\n  font-size: 12px;\n}\n@media only screen and (min-width: 320px) {\n  .hero__subheading {\n    font-size: calc(12px + 4 * (100vw - 320px) \/ (1720 - 320));\n  }\n}\n@media only screen and (min-width: 1720px) {\n  .hero__subheading {\n    font-size: 16px;\n  }\n}\n.hero__subheading {\n  font-weight: 800;\n  letter-spacing: 0.05em;\n  text-transform: uppercase;\n  line-height: 1.6;\n  display: block;\n  margin-bottom: 16px;\n  color: var(--white);\n  opacity: 0.001;\n  -webkit-animation: reveal-down 2s ease 0.1s forwards;\n          animation: reveal-down 2s ease 0.1s forwards;\n}\n.hero__heading {\n  font-size: 26px;\n}\n@media only screen and (min-width: 320px) {\n  .hero__heading {\n    font-size: calc(26px + 28 * (100vw - 320px) \/ (1720 - 320));\n  }\n}\n@media only screen and (min-width: 1720px) {\n  .hero__heading {\n    font-size: 54px;\n  }\n}\n.hero__heading {\n  font-weight: 800;\n  text-transform: uppercase;\n  letter-spacing: 0.1em;\n  line-height: 1;\n  word-break: break-word;\n  color: var(--white);\n  opacity: 0.001;\n  -webkit-animation: reveal-down 2s ease 0.4s forwards;\n          animation: reveal-down 2s ease 0.4s forwards;\n}\n@media (min-width: 530px) {\n  .hero__heading {\n    padding-right: 5%;\n  }\n}\n.hero__heading > span {\n  color: var(--aqua);\n}\n.hero__lede {\n  opacity: 0.001;\n  -webkit-animation: reveal-down 2s ease 0.7s forwards;\n          animation: reveal-down 2s ease 0.7s forwards;\n}\n.hero__lede p {\n  color: var(--white);\n}\n.hero__cta {\n  font-size: 14px;\n}\n@media only screen and (min-width: 320px) {\n  .hero__cta {\n    font-size: calc(14px + 4 * (100vw - 320px) \/ (1720 - 320));\n  }\n}\n@media only screen and (min-width: 1720px) {\n  .hero__cta {\n    font-size: 18px;\n  }\n}\n.hero__cta {\n  line-height: 1.6;\n  border: 0;\n  background: none;\n  outline: none;\n  padding: 0;\n  -webkit-appearance: none;\n     -moz-appearance: none;\n          appearance: none;\n  font-weight: 500;\n  display: -webkit-box;\n  display: -ms-flexbox;\n  display: flex;\n  -webkit-box-align: center;\n      -ms-flex-align: center;\n          align-items: center;\n  -webkit-column-gap: 16px;\n     -moz-column-gap: 16px;\n          column-gap: 16px;\n  cursor: pointer;\n}\n.hero__cta:hover {\n  color: var(--white);\n}\n.hero__cta:hover > span {\n  background-color: var(--magenta);\n  border-color: var(--magenta);\n}\n.hero__cta > span {\n  width: 32px;\n  height: 32px;\n  display: block;\n  border: 1px solid var(--white);\n  border-radius: 50%;\n  background-image: url(\"\/wp-content\/themes\/bodytalk\/assets\/images\/arrow-right-white.svg\");\n  background-repeat: no-repeat;\n  background-size: 11px 10px;\n  background-position: 10px center;\n  background-color: transparent;\n  -webkit-transition: all 0.3s linear;\n  transition: all 0.3s linear;\n}\n@media (min-width: 1200px) {\n  .hero__cta > span {\n    width: 50px;\n    height: 50px;\n    background-size: 17px 16px;\n    background-position: 16px center;\n  }\n}\n.hero__cta {\n  color: var(--white);\n  text-decoration: none;\n}\n.hero__cta > span {\n  -webkit-transform: rotate(90deg);\n          transform: rotate(90deg);\n}\n.hero__lede + .button, .hero__cta,\n.hero .inline-buttons {\n  opacity: 0.001;\n  -webkit-animation: reveal-down 2s ease 1s forwards;\n          animation: reveal-down 2s ease 1s forwards;\n}\n.hero__bg-image {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  -o-object-fit: cover;\n     object-fit: cover;\n  z-index: 0;\n  overflow: hidden;\n}\n.hero__bg-image:before {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  -o-object-fit: cover;\n     object-fit: cover;\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  object-fit: cover;\n  content: \"\";\n  z-index: 1;\n  background: linear-gradient(45deg, #181422 20%, rgba(24, 20, 34, 0) 90%);\n  content: \"\";\n  opacity: 0.6;\n}\n.hero__bg-image img {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  -o-object-fit: cover;\n     object-fit: cover;\n  opacity: 0.5;\n}\n.hero__bg-video {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  -o-object-fit: cover;\n     object-fit: cover;\n  z-index: 0;\n}\n.hero__bg-video:before {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  -o-object-fit: cover;\n     object-fit: cover;\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  object-fit: cover;\n  content: \"\";\n  z-index: 1;\n  background: linear-gradient(45deg, #181422 20%, rgba(24, 20, 34, 0) 90%);\n  content: \"\";\n}\n.hero__bg-video video,\n.hero__bg-video iframe {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  -o-object-fit: cover;\n     object-fit: cover;\n  opacity: 0.8;\n}\n.hero__inset {\n  position: relative;\n  padding-top: 56px;\n  opacity: 0.001;\n  -webkit-animation: reveal-down 2s ease 1.3s forwards;\n          animation: reveal-down 2s ease 1.3s forwards;\n}\n@media (min-width: 1023px) {\n  .hero__inset {\n    padding-top: 0;\n  }\n}\n.hero__inset > .video, .hero__inset > picture {\n  position: relative;\n  left: 0;\n  width: 100%;\n  z-index: 100;\n}\n@media (min-width: 1023px) {\n  .hero__inset > .video, .hero__inset > picture {\n    height: 115%;\n    position: absolute;\n    top: 50%;\n    -webkit-transform: translate3d(0, -50%, 0);\n            transform: translate3d(0, -50%, 0);\n  }\n}\n.hero__inset > .video img, .hero__inset > picture img {\n  width: auto;\n  height: 100%;\n}\n.hero__inset > picture {\n  border-radius: 16px;\n  overflow: hidden;\n  -webkit-mask-image: -webkit-radial-gradient(white, black);\n}\n.hero .grid-container {\n  z-index: 2;\n}\n.hero .breadcrumbs {\n  padding: 16px 0 32px;\n}\n@media (min-width: 769px) {\n  .hero .breadcrumbs {\n    padding: 32px 0;\n    margin-bottom: 32px;\n  }\n}\n.hero .breadcrumbs li,\n.hero .breadcrumbs a,\n.hero .breadcrumbs span {\n  color: var(--white);\n}\n.hero a:not(.button) {\n  border-bottom-color: var(--white);\n}\n.hero .inline-buttons {\n  -webkit-box-orient: horizontal;\n  -webkit-box-direction: normal;\n      -ms-flex-direction: row;\n          flex-direction: row;\n  -ms-flex-wrap: wrap;\n      flex-wrap: wrap;\n  -webkit-box-align: start;\n      -ms-flex-align: start;\n          align-items: flex-start;\n}\n.hero .inline-buttons .button {\n  width: 100%;\n}\n.hero--home {\n  display: -webkit-box;\n  display: -ms-flexbox;\n  display: flex;\n  -webkit-box-align: center;\n      -ms-flex-align: center;\n          align-items: center;\n  padding: 140px 0 80px;\n  min-height: 41.125rem;\n}\n@media (min-width: 768px) {\n  .hero--home {\n    min-height: 51.25rem;\n  }\n}\n@media (min-width: 1024px) {\n  .hero--home {\n    min-height: 44.375rem;\n  }\n}\n.hero--home.hero--home__first-block {\n  top: -70px;\n  margin-bottom: -70px;\n}\n@media (min-width: 1200px) {\n  .hero--home.hero--home__first-block {\n    padding: 180px 0 100px;\n    top: -90px;\n    margin-bottom: -90px;\n  }\n}\n.hero--home:before {\n  top: 70px;\n}\n@media (min-width: 1200px) {\n  .hero--home:before {\n    top: 90px;\n  }\n}\n.hero--home .hero__heading {\n  margin-bottom: 25px;\n}\n.hero--home .hero__lede {\n  font-size: 18px;\n}\n@media only screen and (min-width: 320px) {\n  .hero--home .hero__lede {\n    font-size: calc(18px + 6 * (100vw - 320px) \/ (1720 - 320));\n  }\n}\n@media only screen and (min-width: 1720px) {\n  .hero--home .hero__lede {\n    font-size: 24px;\n  }\n}\n.hero--home .hero__lede {\n  line-height: 1.4;\n  color: var(--white);\n  margin-bottom: 50px;\n}\n.hero--home .hero__bg-video {\n  height: calc(100% + 90px);\n  top: -90px;\n}\n.hero--landing {\n  height: auto;\n  display: -webkit-box;\n  display: -ms-flexbox;\n  display: flex;\n  -webkit-box-orient: vertical;\n  -webkit-box-direction: normal;\n      -ms-flex-direction: column;\n          flex-direction: column;\n  -webkit-box-pack: justify;\n      -ms-flex-pack: justify;\n          justify-content: space-between;\n  padding: 70px 0 30px;\n  top: -70px;\n  margin-bottom: -70px;\n}\n@media (min-width: 1200px) {\n  .hero--landing {\n    min-height: 37.5rem;\n    max-height: 80vh;\n  }\n}\n.hero--landing.block:not([class*=pad-]):not([class*=m-]) {\n  padding: 70px 0 56px;\n}\n@media (min-width: 1200px) {\n  .hero--landing.block:not([class*=pad-]):not([class*=m-]) {\n    padding: 90px 0 56px;\n  }\n}\n@media (min-width: 1200px) {\n  .hero--landing {\n    padding: 90px 0 56px;\n    top: -90px;\n    margin-bottom: -90px;\n  }\n}\n.hero--landing:before {\n  top: 70px;\n}\n@media (min-width: 1200px) {\n  .hero--landing:before {\n    top: 90px;\n  }\n}\n.hero--landing .row {\n  display: block;\n}\n@media (min-width: 1200px) {\n  .hero--landing .row {\n    display: -webkit-box;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-box-align: end;\n        -ms-flex-align: end;\n            align-items: flex-end;\n  }\n}\n.hero--landing .hero__heading {\n  margin-bottom: 32px;\n}\n@media (min-width: 1200px) {\n  .hero--landing .hero__heading {\n    margin-bottom: 0;\n  }\n}\n.hero--landing .hero__lede {\n  font-size: 14px;\n}\n@media only screen and (min-width: 320px) {\n  .hero--landing .hero__lede {\n    font-size: calc(14px + 4 * (100vw - 320px) \/ (1720 - 320));\n  }\n}\n@media only screen and (min-width: 1720px) {\n  .hero--landing .hero__lede {\n    font-size: 18px;\n  }\n}\n.hero--landing .hero__lede {\n  line-height: 1.6;\n  color: var(--white);\n}\n.hero--landing .hero__lede + .hero__cta {\n  margin-top: 32px;\n}\n.hero--sub-landing {\n  border-radius: 0 0 40px 40px;\n  padding: 100px 0 30px;\n  overflow: visible;\n  top: -90px;\n}\n@media (min-width: 530px) {\n  .hero--sub-landing {\n    padding: 100px 0 60px;\n  }\n}\n@media (min-width: 769px) {\n  .hero--sub-landing {\n    padding: 90px 0;\n  }\n}\n.hero--sub-landing:before {\n  top: 90px;\n}\n@media (min-width: 769px) {\n  .hero--sub-landing:before {\n    bottom: 0;\n  }\n}\n.hero--sub-landing:after {\n  display: none;\n}\n.hero--sub-landing .hero__heading {\n  margin-bottom: 16px;\n}\n.hero--sub-landing .inline-buttons {\n  margin-top: 3rem;\n}\n.hero--sub-landing .hero__lede + .inline-buttons,\n.hero--sub-landing .wysiwyg + .inline-buttons {\n  margin-top: 0;\n}\n.hero--sub-landing .hero__lede-container * {\n  color: #fff;\n}\n.hero--sub-landing .hero__lede,\n.hero--sub-landing .wysiwyg {\n  font-size: 14px;\n}\n@media only screen and (min-width: 320px) {\n  .hero--sub-landing .hero__lede,\n  .hero--sub-landing .wysiwyg {\n    font-size: calc(14px + 4 * (100vw - 320px) \/ (1720 - 320));\n  }\n}\n@media only screen and (min-width: 1720px) {\n  .hero--sub-landing .hero__lede,\n  .hero--sub-landing .wysiwyg {\n    font-size: 18px;\n  }\n}\n.hero--sub-landing .hero__lede,\n.hero--sub-landing .wysiwyg {\n  line-height: 1.6;\n  color: var(--white);\n  margin-bottom: 48px;\n}\n.hero--sub-landing .hero__bg-image {\n  border-radius: 0 0 40px 40px;\n  overflow: hidden;\n  -webkit-mask-image: -webkit-radial-gradient(white, black);\n  height: calc(100% + 90px);\n  top: -90px;\n}\n.hero--sub-landing .cpd_logo {\n  display: -webkit-box;\n  display: -ms-flexbox;\n  display: flex;\n  -webkit-box-orient: vertical;\n  -webkit-box-direction: normal;\n      -ms-flex-direction: column;\n          flex-direction: column;\n  -webkit-box-align: start;\n      -ms-flex-align: start;\n          align-items: flex-start;\n  -webkit-box-pack: center;\n      -ms-flex-pack: center;\n          justify-content: center;\n  padding: 2rem 1rem 0;\n}\n@media (min-width: 768px) {\n  .hero--sub-landing .cpd_logo {\n    -webkit-box-align: end;\n        -ms-flex-align: end;\n            align-items: flex-end;\n    -webkit-box-pack: end;\n        -ms-flex-pack: end;\n            justify-content: flex-end;\n  }\n}\n.hero--sub-landing .cpd_logo svg {\n  max-width: 6.125rem;\n  aspect-ratio: 196\/104;\n}\n@media (min-width: 768px) {\n  .hero--sub-landing .cpd_logo svg {\n    max-width: 12.25rem;\n  }\n}\n.hero--sub-landing .hero__solutions-row {\n  color: #fff;\n  margin-top: 2rem;\n  gap: 2rem 0;\n  opacity: 0.001;\n  -webkit-animation: reveal-down 2s ease 1.5s forwards;\n          animation: reveal-down 2s ease 1.5s forwards;\n}\n@media (min-width: 768px) {\n  .hero--sub-landing .hero__solutions-row {\n    gap: 0;\n    margin-top: 3.75rem;\n  }\n}\n@media (min-width: 1024px) {\n  .hero--sub-landing .hero__solutions-row {\n    margin-top: 8.125rem;\n  }\n}\n.hero--sub-landing .hero__solutions-row .title {\n  font-size: 18px;\n}\n@media only screen and (min-width: 320px) {\n  .hero--sub-landing .hero__solutions-row .title {\n    font-size: calc(18px + 14 * (100vw - 320px) \/ (1720 - 320));\n  }\n}\n@media only screen and (min-width: 1720px) {\n  .hero--sub-landing .hero__solutions-row .title {\n    font-size: 32px;\n  }\n}\n.hero--sub-landing .hero__solutions-row .title {\n  line-height: 1.25;\n  font-weight: 600;\n  margin-bottom: 1rem;\n}\n.hero--sub-landing .hero__solutions-row ol,\n.hero--sub-landing .hero__solutions-row ul {\n  font-size: 14px;\n}\n@media only screen and (min-width: 320px) {\n  .hero--sub-landing .hero__solutions-row ol,\n  .hero--sub-landing .hero__solutions-row ul {\n    font-size: calc(14px + 4 * (100vw - 320px) \/ (1720 - 320));\n  }\n}\n@media only screen and (min-width: 1720px) {\n  .hero--sub-landing .hero__solutions-row ol,\n  .hero--sub-landing .hero__solutions-row ul {\n    font-size: 18px;\n  }\n}\n.hero--sub-landing .hero__solutions-row ol,\n.hero--sub-landing .hero__solutions-row ul {\n  line-height: 1.6;\n}\n.hero--sub-landing .hero__solutions-row ol {\n  display: -webkit-box;\n  display: -ms-flexbox;\n  display: flex;\n  -webkit-box-orient: vertical;\n  -webkit-box-direction: normal;\n      -ms-flex-direction: column;\n          flex-direction: column;\n  padding-left: 0;\n  gap: 0.5rem 0;\n  list-style-type: none;\n}\n.hero--sub-landing .hero__solutions-row ol ::marker {\n  color: #E60665;\n  font-weight: 700;\n}\n.hero--sub-landing .hero__solutions-row ol li {\n  background-image: url(\"data:image\/svg+xml,%3Csvg clip-rule='evenodd' fill-rule='evenodd' stroke-linejoin='round' stroke-miterlimit='2' viewBox='0 0 24 24' xmlns='http:\/\/www.w3.org\/2000\/svg' fill='%23E60665'%3E%3Cpath d='m11.998 2.005c5.517 0 9.997 4.48 9.997 9.997 0 5.518-4.48 9.998-9.997 9.998-5.518 0-9.998-4.48-9.998-9.998 0-5.517 4.48-9.997 9.998-9.997zm-5.049 10.386 3.851 3.43c.142.128.321.19.499.19.202 0 .405-.081.552-.242l5.953-6.509c.131-.143.196-.323.196-.502 0-.41-.331-.747-.748-.747-.204 0-.405.082-.554.243l-5.453 5.962-3.298-2.938c-.144-.127-.321-.19-.499-.19-.415 0-.748.335-.748.746 0 .205.084.409.249.557z' fill-rule='nonzero'\/%3E%3C\/svg%3E\");\n  background-repeat: no-repeat;\n  background-position: left 0.25rem;\n  background-size: 1.125rem;\n  padding-left: 1.625rem;\n}\n.hero--sub-landing .hero__solutions-row ul.inline-tags {\n  display: -webkit-box;\n  display: -ms-flexbox;\n  display: flex;\n  -webkit-box-orient: horizontal;\n  -webkit-box-direction: normal;\n      -ms-flex-direction: row;\n          flex-direction: row;\n  -ms-flex-wrap: wrap;\n      flex-wrap: wrap;\n  gap: 0.625rem;\n}\n.hero--sub-landing .hero__solutions-row ul.inline-tags li {\n  font-size: 14px;\n}\n@media only screen and (min-width: 320px) {\n  .hero--sub-landing .hero__solutions-row ul.inline-tags li {\n    font-size: calc(14px + 2 * (100vw - 320px) \/ (1720 - 320));\n  }\n}\n@media only screen and (min-width: 1720px) {\n  .hero--sub-landing .hero__solutions-row ul.inline-tags li {\n    font-size: 16px;\n  }\n}\n.hero--sub-landing .hero__solutions-row ul.inline-tags li {\n  background-color: #1D1D1D;\n  text-transform: none;\n  border-radius: 0.625rem;\n}\n.hero--sub-landing .hero__solutions-row ul.inline-tags--light li {\n  background-color: var(--white);\n  color: var(--black);\n}\n\nbody.training-landing .hero--landing {\n  top: 0;\n  margin-bottom: 0;\n}\n\nbody.single-team .hero--sub-landing .hero__inset {\n  max-width: 80%;\n  padding: 0;\n  margin: 0 auto;\n}\nbody.single-team .hero--sub-landing .hero__inset picture {\n  height: auto;\n}\n\/*# sourceMappingURL=block-hero-landing.css.map *\/\n<\/style>\n<section id=\"\" class=\"hero hero--sub-landing  bg--white     js-sticky-section block\">\n\t<div class=\"grid-container\"><div class=\"row\"><div class=\"col\"><p class=\"breadcrumbs\" id=\"breadcrumbs\"><span><span><a href=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/\">Home<\/a><\/span><\/span><\/p><\/div><\/div><\/div>\n\t<div class=\"grid-container\">\n\t\t<div class=\"row\">\n\t\t\t<div class=\"col col-12 col-lg-8\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<h1 class=\"hero__subheading\">MEET THE BODY TALK TEAM<\/h1>\t\t\t\t\n\t\t\t\t\t\t\t\t\t<h2 class=\"hero__heading\">ALL EXPERTS. ALL DRIVEN BY A PASSION FOR HUMAN CONNECTION.<\/h2>\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"col-12 col-md-8 hero__lede-container\">\n\t\t\t\t\t\t<p class=\"hero__lede\">Experienced, specialist trainers dedicated to creating permanent change in business outcomes and personal impact through effective communication.<\/p>\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t<ul class=\"inline-buttons\">\n\t\t\t\t\t\t\t\t\t\t\t<li><\/li>\n\t\t\t\t\t\t\t\t\t<\/ul>\n\n\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"col col-12 col-lg-4 hero__inset\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t<\/div>\n\n\t\t\t<picture class=\"hero__bg-image\" alt=\"\"><source media=\"(min-width: 992px)\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/378\/dynamic-communicator-1610x800.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/378\/dynamic-communicator-3220x1600.jpg 2.000x\"><source media=\"(min-width: 768px)\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/378\/dynamic-communicator-768x1024.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/378\/dynamic-communicator-1536x2048.jpg 2.000x\"><source media=\"(min-width: 0px)\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/378\/dynamic-communicator-375x677.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/378\/dynamic-communicator-750x1354.jpg 2.000x\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/378\/dynamic-communicator-375x677.jpg\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/378\/dynamic-communicator-375x677.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/378\/dynamic-communicator-750x1354.jpg 2.000x\" alt=\"dynamic-communicator\" width=\"1610\" height=\"800\" class=\"\"><\/picture>\t<\/section>\n\n\n\n<style>\/*\nConverts a pixel value to matching rem value. *Any* value passed, regardless of unit, is assumed to be a pixel value. By default, the base pixel value used to calculate the rem value is taken from the `$global-font-size` variable.\n@access private\n@param {Number} $value - Pixel value to convert.\n@param {Number} $base [null] - Base for pixel conversion.\n@returns {Number} A number in rems, calculated based on the given value and the base pixel value. rem values are passed through as is.\n*\/\n\/*\nRemoves the unit (e.g. px, em, rem) from a value, returning the number only.\n@param {Number} $num - Number to strip unit from.\n@returns {Number} The same number, sans unit.\n*\/\n\/*\nConverts one or more pixel values into matching rem values.\n@param {Number|List} $values - One or more values to convert. Be sure to separate them with spaces and not commas. If you need to convert a comma-separated list, wrap the list in parentheses.\n@param {Number} $base [null] - The base value to use when calculating the `rem`. If you're using Foundation out of the box, this is 16px. If this parameter is `null`, the function will reference the `$base-font-size` variable as the base.\n@returns {List} A list of converted values.\n*\/\n\/**\n * Contrast\n *\/\n\/**\n*\tBasic link hover function\n*\/\n\/*\n* Fluid Type function\n*\/\n\/*\n* Breakpoint Handler\n* @usage: respond-to('tablet_small') { ... } to target 'tablet_small' and aboe\n*\/\n\/*\n* Grid Layout\n*\/\n\/*\n* Responsive Type mixins\n*\/\n\/*\n* Helpers\n*\/\nbody.has-sticky-navigation .title-body {\n  position: relative;\n}\n@media (min-width: 769px) {\n  body.has-sticky-navigation .title-body:not(.title-body--image-blockquote) .col-12:nth-child(1) {\n    top: 170px;\n  }\n}\n\n.title-body {\n  position: relative;\n}\n.title-body.bg--black, .title-body.bg--dark-purple {\n  color: var(--white);\n}\n@media (min-width: 769px) {\n  .title-body--reverse .row {\n    -webkit-box-orient: horizontal;\n    -webkit-box-direction: reverse;\n        -ms-flex-direction: row-reverse;\n            flex-direction: row-reverse;\n  }\n}\n.title-body.meet-the-founder-title .title-body__heading {\n  font-size: 24px;\n}\n@media only screen and (min-width: 320px) {\n  .title-body.meet-the-founder-title .title-body__heading {\n    font-size: calc(24px + 24 * (100vw - 320px) \/ (1720 - 320));\n  }\n}\n@media only screen and (min-width: 1720px) {\n  .title-body.meet-the-founder-title .title-body__heading {\n    font-size: 48px;\n  }\n}\n.title-body.meet-the-founder-title .title-body__heading {\n  line-height: 1.15;\n  font-weight: 600;\n}\n.title-body .row {\n  display: -webkit-box;\n  display: -ms-flexbox;\n  display: flex;\n}\n@media (min-width: 769px) {\n  .title-body:not(.title-body--image-blockquote) .col-12:nth-child(1) {\n    position: sticky;\n    top: var(--desktop-gutter);\n  }\n}\n.title-body__subheading {\n  font-size: 12px;\n}\n@media only screen and (min-width: 320px) {\n  .title-body__subheading {\n    font-size: calc(12px + 4 * (100vw - 320px) \/ (1720 - 320));\n  }\n}\n@media only screen and (min-width: 1720px) {\n  .title-body__subheading {\n    font-size: 16px;\n  }\n}\n.title-body__subheading {\n  font-weight: 800;\n  letter-spacing: 0.05em;\n  text-transform: uppercase;\n  line-height: 1.6;\n  display: block;\n  color: var(--dark-aubergine);\n  margin-bottom: 10px;\n}\n.title-body__heading {\n  font-size: 26px;\n}\n@media only screen and (min-width: 320px) {\n  .title-body__heading {\n    font-size: calc(26px + 6 * (100vw - 320px) \/ (1720 - 320));\n  }\n}\n@media only screen and (min-width: 1720px) {\n  .title-body__heading {\n    font-size: 32px;\n  }\n}\n.title-body__heading {\n  line-height: 1.15;\n  font-weight: 600;\n}\n@media (min-width: 769px) {\n  .title-body__heading {\n    padding-right: 50px;\n  }\n}\n.title-body__heading + .wysiwyg {\n  margin-top: 25px;\n}\n.title-body__heading + .button, .title-body__heading + .wysiwyg + .button {\n  margin-top: 32px;\n}\n.title-body__content-col {\n  margin-top: 2rem;\n}\n@media (min-width: 769px) {\n  .title-body__content-col {\n    margin-top: 0;\n  }\n}\n.title-body__content-col .button-container .button {\n  float: left !important;\n  margin-right: 1rem;\n}\n@media (min-width: 769px) {\n  .title-body__content-col .button-container .button {\n    float: right !important;\n  }\n}\n.title-body__image {\n  display: block;\n  background-color: var(--light-grey);\n  height: 0;\n  position: relative;\n  width: 100%;\n  overflow: hidden;\n}\n.title-body__image > img {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  -o-object-fit: cover;\n     object-fit: cover;\n}\n.title-body__image {\n  border-radius: 16px 16px 0 0;\n  padding-bottom: 54%;\n}\n@media only screen and (min-width: 820px) {\n  .title-body .offset-quote .title-body__image {\n    border-radius: 16px;\n  }\n}\n.title-body__blockquote {\n  position: relative;\n  background-color: var(--white);\n  padding: 35px 20px;\n  border-radius: 0 0 16px 16px;\n}\n@media (min-width: 768px) {\n  .title-body__blockquote {\n    padding: 40px;\n  }\n}\n.title-body__blockquote p {\n  font-size: 18px;\n}\n@media only screen and (min-width: 320px) {\n  .title-body__blockquote p {\n    font-size: calc(18px + 14 * (100vw - 320px) \/ (1720 - 320));\n  }\n}\n@media only screen and (min-width: 1720px) {\n  .title-body__blockquote p {\n    font-size: 32px;\n  }\n}\n.title-body__blockquote p {\n  line-height: 1.25;\n  font-weight: 600;\n  margin-bottom: 20px;\n  font-style: italic;\n}\n.title-body__blockquote p + span {\n  font-size: 14px;\n}\n@media only screen and (min-width: 320px) {\n  .title-body__blockquote p + span {\n    font-size: calc(14px + 4 * (100vw - 320px) \/ (1720 - 320));\n  }\n}\n@media only screen and (min-width: 1720px) {\n  .title-body__blockquote p + span {\n    font-size: 18px;\n  }\n}\n.title-body__blockquote p + span {\n  line-height: 1.6;\n}\n.title-body__blockquote p + span > span {\n  font-weight: 700;\n}\n.title-body__blockquote {\n  color: var(--black);\n}\n.title-body__blockquote > picture, .title-body__blockquote > img {\n  max-width: 100px;\n  max-height: 105px;\n  display: block;\n  margin-bottom: 24px;\n}\n@media only screen and (min-width: 820px) {\n  .title-body__blockquote.offset-quote {\n    margin-top: -4rem;\n    margin-left: -4rem;\n    width: 100%;\n    border-radius: 16px;\n  }\n}\n.title-body .wysiwyg + .button-container {\n  margin-top: 1.5rem;\n}\n.title-body .button-container {\n  display: -webkit-box;\n  display: -ms-flexbox;\n  display: flex;\n  -webkit-box-orient: horizontal;\n  -webkit-box-direction: normal;\n      -ms-flex-direction: row;\n          flex-direction: row;\n  -ms-flex-wrap: wrap;\n      flex-wrap: wrap;\n  gap: 1rem;\n}\n.title-body p:not(:last-of-type) {\n  margin-bottom: 32px;\n}\n.title-body--image-blockquote {\n  background-color: var(--off-white);\n}\n.title-body--image-blockquote .row {\n  -webkit-box-align: start;\n      -ms-flex-align: start;\n          align-items: flex-start;\n}\n.title-body--image-blockquote .col-12:nth-child(1) {\n  margin-bottom: 56px;\n}\n@media (min-width: 768px) {\n  .title-body--image-blockquote .col-12:nth-child(1) {\n    margin-bottom: 0;\n    position: sticky;\n    top: 80px;\n  }\n}\n.title-body--image-blockquote .grid-container .quote-container .quote-video-container {\n  display: block;\n  aspect-ratio: 16\/9;\n  max-width: 100%;\n}\n.title-body--image-blockquote .grid-container .quote-container .quote-video-container .bg-image {\n  max-height: 100%;\n}\n.title-body .quote-container .quote-video-container {\n  overflow: hidden;\n  border-radius: 16px 16px 0 0;\n  position: relative;\n  -webkit-transition: 0.3s ease-in-out;\n  transition: 0.3s ease-in-out;\n}\n.title-body .quote-container .quote-video-container .bg-image {\n  border-radius: 16px 16px 0 0;\n  overflow: hidden;\n  max-height: 292px;\n}\n.title-body .quote-container .quote-video-container .bg-image:hover > img, .title-body .quote-container .quote-video-container .bg-image:focus > img {\n  -webkit-transform: scale(1.2);\n          transform: scale(1.2);\n  -webkit-transition: 0.3s ease-in-out;\n  transition: 0.3s ease-in-out;\n}\n.title-body .quote-container .quote-video-container .bg-image > img {\n  height: 100%;\n  width: 100%;\n  -o-object-fit: cover;\n     object-fit: cover;\n  -webkit-transition: 0.3s ease-in-out;\n  transition: 0.3s ease-in-out;\n}\n.title-body .quote-container .quote-video-container .bg-image .video-play {\n  position: absolute;\n  left: 50%;\n  top: 50%;\n  width: 72px;\n  height: 72px;\n  -webkit-transform: translate(-50%, -50%);\n          transform: translate(-50%, -50%);\n  display: -webkit-box;\n  display: -ms-flexbox;\n  display: flex;\n  -webkit-box-align: center;\n      -ms-flex-align: center;\n          align-items: center;\n  -webkit-box-pack: center;\n      -ms-flex-pack: center;\n          justify-content: center;\n  border-radius: 100px;\n  border: solid 2px #fff;\n}\n.title-body .quote-container .quote-video-container .bg-image .video-play img {\n  width: 28px;\n  height: 28px;\n  margin-left: 4px;\n}\n.title-body .video-container {\n  border-radius: 16px;\n  overflow: hidden;\n  display: -webkit-box;\n  display: -ms-flexbox;\n  display: flex;\n  position: relative;\n  -webkit-transition: 0.3s ease-in-out;\n  transition: 0.3s ease-in-out;\n  aspect-ratio: 16\/9;\n  max-width: 100%;\n  cursor: pointer;\n}\n.title-body .video-container iframe {\n  -webkit-transform: scale(1.175);\n          transform: scale(1.175);\n}\n@media only screen and (max-width: 595px) {\n  .title-body .video-container {\n    min-height: 200px;\n  }\n}\n.title-body .video-container .bg-image {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n}\n.title-body .video-container .bg-image:hover > img, .title-body .video-container .bg-image:focus > img {\n  -webkit-transform: scale(1.2);\n          transform: scale(1.2);\n  -webkit-transition: 0.3s ease-in-out;\n  transition: 0.3s ease-in-out;\n}\n.title-body .video-container .bg-image > img {\n  width: 100%;\n  height: 100%;\n  -o-object-fit: cover;\n     object-fit: cover;\n  -webkit-transition: 0.3s ease-in-out;\n  transition: 0.3s ease-in-out;\n}\n.title-body .video-container .bg-image .video-play {\n  position: absolute;\n  left: 50%;\n  top: 50%;\n  -webkit-transform: translate(-50%, -50%);\n          transform: translate(-50%, -50%);\n  width: 88px;\n  height: 88px;\n  display: -webkit-box;\n  display: -ms-flexbox;\n  display: flex;\n  -webkit-box-align: center;\n      -ms-flex-align: center;\n          align-items: center;\n  -webkit-box-pack: center;\n      -ms-flex-pack: center;\n          justify-content: center;\n  border-radius: 100px;\n  border: solid 2px #fff;\n}\n@media screen and (max-width: 595px) {\n  .title-body .video-container .bg-image .video-play {\n    width: 64px;\n    height: 64px;\n  }\n}\n.title-body .video-container .bg-image .video-play img {\n  width: 32px;\n  height: 32px;\n  margin-left: 4px;\n}\n@media screen and (max-width: 595px) {\n  .title-body .video-container .bg-image .video-play img {\n    width: 24px;\n    height: 24px;\n  }\n}\n\/*# sourceMappingURL=block-title-body.css.map *\/\n<\/style>\n<section id=\"\" class=\"title-body  bg--grey  pad-bottom--5   main js-sticky-section block\">\n\t<div class=\"grid-container\">\n\t\t<div class=\"row align-items-start\">\n\t\t\t<div class=\"col-12 col-md-6\" data-aos=\"fade-up\">\n\t\t\t\t<p class=\"overline\"><\/p>\t\t\t\t<h2 class=\"title-body__heading\">Trainers with the skills and experience to help your team reach new heights<\/h2>\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"col-12 col-md-6 title-body__content-col\" data-aos=\"fade-up\" data-aos-delay=\"150\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"wysiwyg\">\n\t\t\t\t\t\t\t<p><span style=\"font-weight: 400;\">Body Talk is a team of skilled professionals. Every coach combines a wealth of top-level experience in television, film and stage with the techniques perfected in the Body Talk Way to deliver tangible transformations for key personnel at world-leading enterprises.\u00a0<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Together, they carry a vast range of experience in advanced communication, psychology, storytelling, client relationships and events, all backed up by an expert support team. Rest assured, your training will deliver both a great experience and remarkable results.<\/span><\/p>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t<div class=\"button-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t<\/div>\n<\/section>\n\n\n\n\n<section id=\"\" class=\"team-carousel js-team-carousel glide  bg--grey   m-top--6  js-sticky-section block\">\n\t<div class=\"grid-container\">\n\t\t<div class=\"row block-heading\" data-aos=\"fade-up\">\n\t\t\t<div class=\"col-12 col-sm-6 col-md-8\">\n\t\t\t\t\t\t\t\t\t<h2 class=\"team-carousel__heading\">Meet your training team <\/h2>\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"col-12 col-sm-6 col-md-4\">\n\t\t\t\t<ul class=\"inline-buttons float-end\">\n\t\t\t\t\t<li>\n\t\t\t\t\t\t<button class=\"glide__arrow glide__arrow--prev js-team-carousel-prev\">\n\t\t\t\t\t\t<svg width=\"17\" height=\"16\" viewBox=\"0 0 17 16\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n\t\t\t\t\t\t\t<path d=\"M8.00391 0.426757L7.75781 0.672851C7.58203 0.848632 7.58203 1.09473 7.75781 1.27051L14.0156 7.52832L0.796875 7.52832C0.585937 7.52832 0.375 7.73926 0.375 7.9502L0.375 8.30176C0.375 8.54785 0.585937 8.72363 0.796875 8.72363L14.0156 8.72363L7.75781 15.0166C7.58203 15.1924 7.58203 15.4385 7.75781 15.6143L8.00391 15.8604C8.17969 16.0361 8.42578 16.0361 8.60156 15.8604L16.0195 8.44238C16.1953 8.2666 16.1953 8.02051 16.0195 7.84473L8.60156 0.426757C8.42578 0.250976 8.17969 0.250976 8.00391 0.426757Z\" fill=\"#181423\"\/>\n\t\t\t\t\t\t<\/svg>\n\t\t\t\t\t\t<\/button>\n\t\t\t\t\t<\/li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t<button class=\"glide__arrow glide__arrow--next js-team-carousel-next\">\n\t\t\t\t\t\t<svg width=\"17\" height=\"16\" viewBox=\"0 0 17 16\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n\t\t\t\t\t\t\t<path d=\"M8.00391 0.426757L7.75781 0.672851C7.58203 0.848632 7.58203 1.09473 7.75781 1.27051L14.0156 7.52832L0.796875 7.52832C0.585937 7.52832 0.375 7.73926 0.375 7.9502L0.375 8.30176C0.375 8.54785 0.585937 8.72363 0.796875 8.72363L14.0156 8.72363L7.75781 15.0166C7.58203 15.1924 7.58203 15.4385 7.75781 15.6143L8.00391 15.8604C8.17969 16.0361 8.42578 16.0361 8.60156 15.8604L16.0195 8.44238C16.1953 8.2666 16.1953 8.02051 16.0195 7.84473L8.60156 0.426757C8.42578 0.250976 8.17969 0.250976 8.00391 0.426757Z\" fill=\"#181423\"\/>\n\t\t\t\t\t\t<\/svg>\n\t\t\t\t\t\t<\/button>\n\t\t\t\t\t<\/li>\n\t\t\t\t<\/ul>\n\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t<\/div>\n\n    <div class=\"glide__track\" data-glide-el=\"track\" data-aos=\"fade-up\">\n\t\t<ul class=\"glide__slides\">\n\t\t\t\t\t\t\t\t<li class=\"glide__slide\">\n\t\t\t\t<a href=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/about-us\/meet-the-team\/richard-newman\/\" class=\"team-card\">\n\t<div class=\"team-card__content\">\n\t\t<h3>Richard Newman<\/h3>\n\t\t\t\t<span>Founder &#038; CEO, Best-Selling Author, Podcast Host, Conference Speaker &#038; Coach<\/span>\n\n\t\t\t\t\t<p>Richard Newman is an award-winning expert in Leadership Communication, Storytelling and Influence, working in advanced communication since 1995.<\/p>\n\t\t\t<\/div>\n\t<picture alt=\"Meet The Team profile image\"><source media=\"(min-width: 992px)\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3313\/UKBT_061223-10-A-1-498x572-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3313\/UKBT_061223-10-A-1-497x572-c.jpg 1.000x\"><source media=\"(min-width: 768px)\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3313\/UKBT_061223-10-A-1-472x542-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3313\/UKBT_061223-10-A-1-498x572-c.jpg 1.055x\"><source media=\"(min-width: 0px)\" loading=\"lazy\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3313\/UKBT_061223-10-A-1-268x308-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3313\/UKBT_061223-10-A-1-497x572-c.jpg 1.857x\"><img decoding=\"async\" loading=\"lazy\" loading=\"lazy\" src=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3313\/UKBT_061223-10-A-1-268x308-c.jpg\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3313\/UKBT_061223-10-A-1-268x308-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3313\/UKBT_061223-10-A-1-497x572-c.jpg 1.857x\" alt=\"UKBT_061223 10 A\" width=\"498\" height=\"572\" class=\"\"><\/picture><\/a>\n\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"glide__slide\">\n\t\t\t\t<a href=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/about-us\/meet-the-team\/alina-jenkins\/\" class=\"team-card\">\n\t<div class=\"team-card__content\">\n\t\t<h3>Alina Jenkins<\/h3>\n\t\t\t\t<span>Award-Winning BBC Presenter, Radio &#038; Podcast Host and Executive Coach<\/span>\n\n\t\t\t\t\t<p>Alina Jenkins is an award-winning BBC presenter &#038; broadcaster with a background in communicating science. She is also a keynote speaker, executive coach and hosts our podcasts.<\/p>\n\t\t\t<\/div>\n\t<picture alt=\"Meet The Team profile image\"><source media=\"(min-width: 992px)\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3300\/UKBT_061223-142-A-1-498x572-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3300\/UKBT_061223-142-A-1-497x572-c.jpg 1.000x\"><source media=\"(min-width: 768px)\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3300\/UKBT_061223-142-A-1-472x542-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3300\/UKBT_061223-142-A-1-498x572-c.jpg 1.055x\"><source media=\"(min-width: 0px)\" loading=\"lazy\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3300\/UKBT_061223-142-A-1-268x308-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3300\/UKBT_061223-142-A-1-497x572-c.jpg 1.857x\"><img decoding=\"async\" loading=\"lazy\" loading=\"lazy\" src=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3300\/UKBT_061223-142-A-1-268x308-c.jpg\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3300\/UKBT_061223-142-A-1-268x308-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3300\/UKBT_061223-142-A-1-497x572-c.jpg 1.857x\" alt=\"UKBT_061223 142 A\" width=\"498\" height=\"572\" class=\"\"><\/picture><\/a>\n\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"glide__slide\">\n\t\t\t\t<a href=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/about-us\/meet-the-team\/emily-fairman\/\" class=\"team-card\">\n\t<div class=\"team-card__content\">\n\t\t<h3>Emily Fairman<\/h3>\n\t\t\t\t<span>Writer, TV Actress &#038; Voice-Over Artist<\/span>\n\n\t\t\t\t\t<p>Emily started her career working with the Guardian News Group, writing and producing corporate films &#038; audio programmes for clients.<\/p>\n\t\t\t<\/div>\n\t<picture alt=\"Meet The Team profile image\"><source media=\"(min-width: 992px)\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3294\/UKBT_061223-167-A-1-498x572-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3294\/UKBT_061223-167-A-1-497x572-c.jpg 1.000x\"><source media=\"(min-width: 768px)\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3294\/UKBT_061223-167-A-1-472x542-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3294\/UKBT_061223-167-A-1-498x572-c.jpg 1.055x\"><source media=\"(min-width: 0px)\" loading=\"lazy\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3294\/UKBT_061223-167-A-1-268x308-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3294\/UKBT_061223-167-A-1-497x572-c.jpg 1.857x\"><img decoding=\"async\" loading=\"lazy\" loading=\"lazy\" src=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3294\/UKBT_061223-167-A-1-268x308-c.jpg\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3294\/UKBT_061223-167-A-1-268x308-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3294\/UKBT_061223-167-A-1-497x572-c.jpg 1.857x\" alt=\"UKBT_061223 167 A\" width=\"498\" height=\"572\" class=\"\"><\/picture><\/a>\n\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"glide__slide\">\n\t\t\t\t<a href=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/about-us\/meet-the-team\/jamie-richards\/\" class=\"team-card\">\n\t<div class=\"team-card__content\">\n\t\t<h3>Jamie Richards<\/h3>\n\t\t\t\t<span>BBC TV Actor, Stage Performer &#038; Voice Actor<\/span>\n\n\t\t\t\t\t<p>Following 3 years training at The Oxford School of Drama, Jamie has been working internationally as a professional actor for the past 17 years.<\/p>\n\t\t\t<\/div>\n\t<picture alt=\"Meet The Team profile image\"><source media=\"(min-width: 992px)\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3329\/UKBT_061223-115-A-1-498x572-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3329\/UKBT_061223-115-A-1-497x572-c.jpg 1.000x\"><source media=\"(min-width: 768px)\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3329\/UKBT_061223-115-A-1-472x542-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3329\/UKBT_061223-115-A-1-498x572-c.jpg 1.055x\"><source media=\"(min-width: 0px)\" loading=\"lazy\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3329\/UKBT_061223-115-A-1-268x308-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3329\/UKBT_061223-115-A-1-497x572-c.jpg 1.857x\"><img decoding=\"async\" loading=\"lazy\" loading=\"lazy\" src=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3329\/UKBT_061223-115-A-1-268x308-c.jpg\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3329\/UKBT_061223-115-A-1-268x308-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3329\/UKBT_061223-115-A-1-497x572-c.jpg 1.857x\" alt=\"UKBT_061223 115 A\" width=\"498\" height=\"572\" class=\"\"><\/picture><\/a>\n\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"glide__slide\">\n\t\t\t\t<a href=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/about-us\/meet-the-team\/charlie-evans\/\" class=\"team-card\">\n\t<div class=\"team-card__content\">\n\t\t<h3>Charlie Evans<\/h3>\n\t\t\t\t<span>Psychotherapist, Actress &#038; Voice-Over Artist<\/span>\n\n\t\t\t\t\t<p>Charlie studied acting in both London and New York and is an accomplished and accredited, trained actress. She is also a qualified and inspiring psychotherapist tailoring therapy and coaching to the individual client, integrating the affective, behavioural, cognitive and psychological systems to gain insight and understanding of one\u2019s issues.\n<\/p>\n\t\t\t<\/div>\n\t<picture alt=\"Meet The Team profile image\"><source media=\"(min-width: 992px)\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3316\/UKBT_061223-44-A-1-498x572-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3316\/UKBT_061223-44-A-1-497x572-c.jpg 1.000x\"><source media=\"(min-width: 768px)\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3316\/UKBT_061223-44-A-1-472x542-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3316\/UKBT_061223-44-A-1-498x572-c.jpg 1.055x\"><source media=\"(min-width: 0px)\" loading=\"lazy\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3316\/UKBT_061223-44-A-1-268x308-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3316\/UKBT_061223-44-A-1-497x572-c.jpg 1.857x\"><img decoding=\"async\" loading=\"lazy\" loading=\"lazy\" src=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3316\/UKBT_061223-44-A-1-268x308-c.jpg\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3316\/UKBT_061223-44-A-1-268x308-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3316\/UKBT_061223-44-A-1-497x572-c.jpg 1.857x\" alt=\"UKBT_061223 44 A\" width=\"498\" height=\"572\" class=\"\"><\/picture><\/a>\n\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"glide__slide\">\n\t\t\t\t<a href=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/about-us\/meet-the-team\/chetan-pathak\/\" class=\"team-card\">\n\t<div class=\"team-card__content\">\n\t\t<h3>Chetan Pathak<\/h3>\n\t\t\t\t<span>BBC Sport &#038; News Presenter, Audiobook Narrator<\/span>\n\n\t\t\t\t\t<p>Chetan is an award-winning Broadcast Journalist, with over 15 years experience working for the BBC across television and radio.<\/p>\n\t\t\t<\/div>\n\t<picture alt=\"Meet The Team profile image\"><source media=\"(min-width: 992px)\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3341\/Chetan-1-square-498x572-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3341\/Chetan-1-square-497x572-c.jpg 1.000x\"><source media=\"(min-width: 768px)\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3341\/Chetan-1-square-472x542-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3341\/Chetan-1-square-498x572-c.jpg 1.055x\"><source media=\"(min-width: 0px)\" loading=\"lazy\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3341\/Chetan-1-square-268x308-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3341\/Chetan-1-square-497x572-c.jpg 1.857x\"><img decoding=\"async\" loading=\"lazy\" loading=\"lazy\" src=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3341\/Chetan-1-square-268x308-c.jpg\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3341\/Chetan-1-square-268x308-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3341\/Chetan-1-square-497x572-c.jpg 1.857x\" alt=\"Chetan 1 square\" width=\"498\" height=\"572\" class=\"\"><\/picture><\/a>\n\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"glide__slide\">\n\t\t\t\t<a href=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/about-us\/meet-the-team\/jennifer-bartram\/\" class=\"team-card\">\n\t<div class=\"team-card__content\">\n\t\t<h3>Jennifer Bartram<\/h3>\n\t\t\t\t<span>Award-Winning BBC TV &#038; Radio Presenter<\/span>\n\n\t\t\t\t\t<p>Jennifer is a multilingual TV and radio presenter who is passionate about language and communication.<\/p>\n\t\t\t<\/div>\n\t<picture alt=\"Meet The Team profile image\"><source media=\"(min-width: 992px)\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3325\/UKBT_061223-58-A-1-498x572-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3325\/UKBT_061223-58-A-1-497x572-c.jpg 1.000x\"><source media=\"(min-width: 768px)\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3325\/UKBT_061223-58-A-1-472x542-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3325\/UKBT_061223-58-A-1-498x572-c.jpg 1.055x\"><source media=\"(min-width: 0px)\" loading=\"lazy\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3325\/UKBT_061223-58-A-1-268x308-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3325\/UKBT_061223-58-A-1-497x572-c.jpg 1.857x\"><img decoding=\"async\" loading=\"lazy\" loading=\"lazy\" src=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3325\/UKBT_061223-58-A-1-268x308-c.jpg\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3325\/UKBT_061223-58-A-1-268x308-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3325\/UKBT_061223-58-A-1-497x572-c.jpg 1.857x\" alt=\"UKBT_061223 58 A\" width=\"498\" height=\"572\" class=\"\"><\/picture><\/a>\n\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"glide__slide\">\n\t\t\t\t<a href=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/about-us\/meet-the-team\/mark-seddon\/\" class=\"team-card\">\n\t<div class=\"team-card__content\">\n\t\t<h3>Mark Seddon<\/h3>\n\t\t\t\t<span>Actor &#038; Voice-Over Artist<\/span>\n\n\t\t\t\t\t<p>Mark has been a professional actor for almost 20 years. Since training at the Royal Central School of Speech and Drama, he has performed on stage in West End shows including The Woman In Black and has toured internationally.<\/p>\n\t\t\t<\/div>\n\t<picture alt=\"Meet The Team profile image\"><source media=\"(min-width: 992px)\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3333\/UKBT_061223-174-A-1-498x572-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3333\/UKBT_061223-174-A-1-497x572-c.jpg 1.000x\"><source media=\"(min-width: 768px)\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3333\/UKBT_061223-174-A-1-472x542-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3333\/UKBT_061223-174-A-1-498x572-c.jpg 1.055x\"><source media=\"(min-width: 0px)\" loading=\"lazy\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3333\/UKBT_061223-174-A-1-268x308-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3333\/UKBT_061223-174-A-1-497x572-c.jpg 1.857x\"><img decoding=\"async\" loading=\"lazy\" loading=\"lazy\" src=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3333\/UKBT_061223-174-A-1-268x308-c.jpg\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3333\/UKBT_061223-174-A-1-268x308-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3333\/UKBT_061223-174-A-1-497x572-c.jpg 1.857x\" alt=\"UKBT_061223 174 A\" width=\"498\" height=\"572\" class=\"\"><\/picture><\/a>\n\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"glide__slide\">\n\t\t\t\t<a href=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/about-us\/meet-the-team\/maisanna-bezizi\/\" class=\"team-card\">\n\t<div class=\"team-card__content\">\n\t\t<h3>Maisanna Bezizi<\/h3>\n\t\t\t\t<span>Language Coach for Business, TV &#038; Film<\/span>\n\n\t\t\t\t\t<p>Maisanna specialises in communication skills training for international clients in the business and medical worlds. She speaks English, Spanish, Arabic, Italian and French.\n<\/p>\n\t\t\t<\/div>\n\t<picture alt=\"Meet The Team profile image\"><source media=\"(min-width: 992px)\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3324\/UKBT_061223-74-A-1-498x572-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3324\/UKBT_061223-74-A-1-497x572-c.jpg 1.000x\"><source media=\"(min-width: 768px)\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3324\/UKBT_061223-74-A-1-472x542-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3324\/UKBT_061223-74-A-1-498x572-c.jpg 1.055x\"><source media=\"(min-width: 0px)\" loading=\"lazy\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3324\/UKBT_061223-74-A-1-268x308-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3324\/UKBT_061223-74-A-1-497x572-c.jpg 1.857x\"><img decoding=\"async\" loading=\"lazy\" loading=\"lazy\" src=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3324\/UKBT_061223-74-A-1-268x308-c.jpg\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3324\/UKBT_061223-74-A-1-268x308-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3324\/UKBT_061223-74-A-1-497x572-c.jpg 1.857x\" alt=\"UKBT_061223 74 A\" width=\"498\" height=\"572\" class=\"\"><\/picture><\/a>\n\t\t\t<\/li>\n\t\t\t\t<\/ul>\n    <\/div>\n<\/section>\n\n\n\n\n<section id=\"\" class=\"logo-ticker  bg--grey pad-top--2 pad-bottom--2   type--carousel js-sticky-section block\">\n\t<div class=\"grid-container\">\n\t\t<div class=\"row\">\n\t\t\t<div class=\"col\">\n\t\t\t\t<h2 class=\"logo-ticker__heading\"><\/h2>\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n    <div class=\"logo-ticker__logos\">\n\t\t<ul>\n\t\t\t\t\t\t\t\t\t\t\t\t<li><img decoding=\"async\" loading=\"lazy\" width=\"145\" height=\"95\" src=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/2023\/03\/ee-logo.svg\" alt=\"ee-logo\" class=\"\" alt=\"\" \/><\/li>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li><img decoding=\"async\" loading=\"lazy\" width=\"145\" height=\"95\" src=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/2023\/03\/aecom-logo.svg\" alt=\"aecom-logo\" class=\"\" alt=\"\" \/><\/li>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li><img decoding=\"async\" loading=\"lazy\" width=\"145\" height=\"95\" src=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/2023\/03\/expedia.svg\" alt=\"expedia\" class=\"\" alt=\"\" \/><\/li>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li><img decoding=\"async\" loading=\"lazy\" width=\"145\" height=\"95\" src=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/2023\/03\/virgin.svg\" alt=\"virgin\" class=\"\" alt=\"\" \/><\/li>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li><img decoding=\"async\" loading=\"lazy\" width=\"145\" height=\"95\" src=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/2023\/03\/axa.svg\" alt=\"axa\" class=\"\" alt=\"\" \/><\/li>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li><img decoding=\"async\" loading=\"lazy\" width=\"145\" height=\"95\" src=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/2023\/03\/edf.svg\" alt=\"edf\" class=\"\" alt=\"\" \/><\/li>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li><picture class=\"\" alt=\"\"><source media=\"(min-width: 0px)\" loading=\"lazy\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/381\/3m-145x95.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/381\/3m-290x190.jpg 2.000x\"><img decoding=\"async\" loading=\"lazy\" loading=\"lazy\" src=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/381\/3m-145x95.jpg\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/381\/3m-145x95.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/381\/3m-290x190.jpg 2.000x\" alt=\"3m\" width=\"145\" height=\"95\" class=\"\"><\/picture><\/li>\n\t\t\t\t\t\t\t\t\t<\/ul>\n\t\t\t\t\t<ul aria-hidden=\"true\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li><img decoding=\"async\" loading=\"lazy\" width=\"145\" height=\"95\" src=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/2023\/03\/ee-logo.svg\" alt=\"ee-logo\" class=\"\" alt=\"\" \/><\/li>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li><img decoding=\"async\" loading=\"lazy\" width=\"145\" height=\"95\" src=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/2023\/03\/aecom-logo.svg\" alt=\"aecom-logo\" class=\"\" alt=\"\" \/><\/li>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li><img decoding=\"async\" loading=\"lazy\" width=\"145\" height=\"95\" src=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/2023\/03\/expedia.svg\" alt=\"expedia\" class=\"\" alt=\"\" \/><\/li>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li><img decoding=\"async\" loading=\"lazy\" width=\"145\" height=\"95\" src=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/2023\/03\/virgin.svg\" alt=\"virgin\" class=\"\" alt=\"\" \/><\/li>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li><img decoding=\"async\" loading=\"lazy\" width=\"145\" height=\"95\" src=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/2023\/03\/axa.svg\" alt=\"axa\" class=\"\" alt=\"\" \/><\/li>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li><img decoding=\"async\" loading=\"lazy\" width=\"145\" height=\"95\" src=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/2023\/03\/edf.svg\" alt=\"edf\" class=\"\" alt=\"\" \/><\/li>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li><picture class=\"\" alt=\"\"><source media=\"(min-width: 0px)\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/381\/3m-145x95.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/381\/3m-290x190.jpg 2.000x\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/381\/3m-145x95.jpg\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/381\/3m-145x95.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/381\/3m-290x190.jpg 2.000x\" alt=\"3m\" width=\"145\" height=\"95\" class=\"\"><\/picture><\/li>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t<\/ul>\n\t\t    <\/div>\n<\/section>\n\n\n\n\n<section id=\"\" class=\"team-carousel js-team-carousel glide  bg--grey   m-top--4  js-sticky-section block\">\n\t<div class=\"grid-container\">\n\t\t<div class=\"row block-heading\" data-aos=\"fade-up\">\n\t\t\t<div class=\"col-12 col-sm-6 col-md-8\">\n\t\t\t\t\t\t\t\t\t<h2 class=\"team-carousel__heading\">Meet our office team<\/h2>\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"col-12 col-sm-6 col-md-4\">\n\t\t\t\t<ul class=\"inline-buttons float-end\">\n\t\t\t\t\t<li>\n\t\t\t\t\t\t<button class=\"glide__arrow glide__arrow--prev js-team-carousel-prev\">\n\t\t\t\t\t\t<svg width=\"17\" height=\"16\" viewBox=\"0 0 17 16\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n\t\t\t\t\t\t\t<path d=\"M8.00391 0.426757L7.75781 0.672851C7.58203 0.848632 7.58203 1.09473 7.75781 1.27051L14.0156 7.52832L0.796875 7.52832C0.585937 7.52832 0.375 7.73926 0.375 7.9502L0.375 8.30176C0.375 8.54785 0.585937 8.72363 0.796875 8.72363L14.0156 8.72363L7.75781 15.0166C7.58203 15.1924 7.58203 15.4385 7.75781 15.6143L8.00391 15.8604C8.17969 16.0361 8.42578 16.0361 8.60156 15.8604L16.0195 8.44238C16.1953 8.2666 16.1953 8.02051 16.0195 7.84473L8.60156 0.426757C8.42578 0.250976 8.17969 0.250976 8.00391 0.426757Z\" fill=\"#181423\"\/>\n\t\t\t\t\t\t<\/svg>\n\t\t\t\t\t\t<\/button>\n\t\t\t\t\t<\/li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t<button class=\"glide__arrow glide__arrow--next js-team-carousel-next\">\n\t\t\t\t\t\t<svg width=\"17\" height=\"16\" viewBox=\"0 0 17 16\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n\t\t\t\t\t\t\t<path d=\"M8.00391 0.426757L7.75781 0.672851C7.58203 0.848632 7.58203 1.09473 7.75781 1.27051L14.0156 7.52832L0.796875 7.52832C0.585937 7.52832 0.375 7.73926 0.375 7.9502L0.375 8.30176C0.375 8.54785 0.585937 8.72363 0.796875 8.72363L14.0156 8.72363L7.75781 15.0166C7.58203 15.1924 7.58203 15.4385 7.75781 15.6143L8.00391 15.8604C8.17969 16.0361 8.42578 16.0361 8.60156 15.8604L16.0195 8.44238C16.1953 8.2666 16.1953 8.02051 16.0195 7.84473L8.60156 0.426757C8.42578 0.250976 8.17969 0.250976 8.00391 0.426757Z\" fill=\"#181423\"\/>\n\t\t\t\t\t\t<\/svg>\n\t\t\t\t\t\t<\/button>\n\t\t\t\t\t<\/li>\n\t\t\t\t<\/ul>\n\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t<\/div>\n\n    <div class=\"glide__track\" data-glide-el=\"track\" data-aos=\"fade-up\">\n\t\t<ul class=\"glide__slides\">\n\t\t\t\t\t\t\t\t<li class=\"glide__slide\">\n\t\t\t\t<a href=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/about-us\/meet-the-team\/charlotte-murtagh\/\" class=\"team-card\">\n\t<div class=\"team-card__content\">\n\t\t<h3>Charlotte Murtagh<\/h3>\n\t\t\t\t<span>COO<\/span>\n\n\t\t\t\t\t<p>Charlotte joined Body Talk in 2021 as the COO and is responsible for implementing the business strategy and processes as well as overseeing the daily operations of the company.<\/p>\n\t\t\t<\/div>\n\t<picture alt=\"Meet The Team profile image\"><source media=\"(min-width: 992px)\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1567\/Charlotte-2-scaled-498x572-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1567\/Charlotte-2-scaled-996x1144-c.jpg 2.000x\"><source media=\"(min-width: 768px)\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1567\/Charlotte-2-scaled-472x542-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1567\/Charlotte-2-scaled-944x1084-c.jpg 2.000x\"><source media=\"(min-width: 0px)\" loading=\"lazy\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1567\/Charlotte-2-scaled-268x308-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1567\/Charlotte-2-scaled-536x616-c.jpg 2.000x\"><img decoding=\"async\" loading=\"lazy\" loading=\"lazy\" src=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1567\/Charlotte-2-scaled-268x308-c.jpg\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1567\/Charlotte-2-scaled-268x308-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1567\/Charlotte-2-scaled-536x616-c.jpg 2.000x\" alt=\"Charlotte 2\" width=\"498\" height=\"572\" class=\"\"><\/picture><\/a>\n\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"glide__slide\">\n\t\t\t\t<a href=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/about-us\/meet-the-team\/donna-mountain\/\" class=\"team-card\">\n\t<div class=\"team-card__content\">\n\t\t<h3>Donna Mountain<\/h3>\n\t\t\t\t<span>Head of Finance<\/span>\n\n\t\t\t\t\t<p>Donna is our Accounts Manager and deals with everything financial after your training has taken place.<\/p>\n\t\t\t<\/div>\n\t<picture alt=\"Meet The Team profile image\"><source media=\"(min-width: 992px)\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1569\/Donna-Mountain-scaled-498x572-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1569\/Donna-Mountain-scaled-996x1144-c.jpg 2.000x\"><source media=\"(min-width: 768px)\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1569\/Donna-Mountain-scaled-472x542-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1569\/Donna-Mountain-scaled-944x1084-c.jpg 2.000x\"><source media=\"(min-width: 0px)\" loading=\"lazy\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1569\/Donna-Mountain-scaled-268x308-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1569\/Donna-Mountain-scaled-536x616-c.jpg 2.000x\"><img decoding=\"async\" loading=\"lazy\" loading=\"lazy\" src=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1569\/Donna-Mountain-scaled-268x308-c.jpg\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1569\/Donna-Mountain-scaled-268x308-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1569\/Donna-Mountain-scaled-536x616-c.jpg 2.000x\" alt=\"Donna Mountain\" width=\"498\" height=\"572\" class=\"\"><\/picture><\/a>\n\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"glide__slide\">\n\t\t\t\t<a href=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/about-us\/meet-the-team\/lydia-easton\/\" class=\"team-card\">\n\t<div class=\"team-card__content\">\n\t\t<h3>Lydia Easton<\/h3>\n\t\t\t\t<span>Head of Client Services<\/span>\n\n\t\t\t\t\t<p>Joining the Body Talk team in 2019 as a Client Relationship Manager, Lydia works with a number of clients from a variety of industries.<\/p>\n\t\t\t<\/div>\n\t<picture alt=\"Meet The Team profile image\"><source media=\"(min-width: 992px)\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1575\/Lydia-scaled-498x572-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1575\/Lydia-scaled-996x1144-c.jpg 2.000x\"><source media=\"(min-width: 768px)\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1575\/Lydia-scaled-472x542-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1575\/Lydia-scaled-944x1084-c.jpg 2.000x\"><source media=\"(min-width: 0px)\" loading=\"lazy\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1575\/Lydia-scaled-268x308-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1575\/Lydia-scaled-536x616-c.jpg 2.000x\"><img decoding=\"async\" loading=\"lazy\" loading=\"lazy\" src=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1575\/Lydia-scaled-268x308-c.jpg\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1575\/Lydia-scaled-268x308-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1575\/Lydia-scaled-536x616-c.jpg 2.000x\" alt=\"Lydia\" width=\"498\" height=\"572\" class=\"\"><\/picture><\/a>\n\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"glide__slide\">\n\t\t\t\t<a href=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/about-us\/meet-the-team\/imogen-conyers\/\" class=\"team-card\">\n\t<div class=\"team-card__content\">\n\t\t<h3>Imogen Conyers<\/h3>\n\t\t\t\t<span>Senior Client Relations &#038; Marketing Manager<\/span>\n\n\t\t\t\t\t<p>Imogen brings over 10 years of experience in Client Service, Communications, and Marketing to Body Talk.<\/p>\n\t\t\t<\/div>\n\t<picture alt=\"Meet The Team profile image\"><source media=\"(min-width: 992px)\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/599\/UKBT_260922-045-v2-scaled-498x572-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/599\/UKBT_260922-045-v2-scaled-996x1144-c.jpg 2.000x\"><source media=\"(min-width: 768px)\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/599\/UKBT_260922-045-v2-scaled-472x542-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/599\/UKBT_260922-045-v2-scaled-944x1084-c.jpg 2.000x\"><source media=\"(min-width: 0px)\" loading=\"lazy\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/599\/UKBT_260922-045-v2-scaled-268x308-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/599\/UKBT_260922-045-v2-scaled-536x616-c.jpg 2.000x\"><img decoding=\"async\" loading=\"lazy\" loading=\"lazy\" src=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/599\/UKBT_260922-045-v2-scaled-268x308-c.jpg\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/599\/UKBT_260922-045-v2-scaled-268x308-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/599\/UKBT_260922-045-v2-scaled-536x616-c.jpg 2.000x\" alt=\"UKBT_260922 045 v2\" width=\"498\" height=\"572\" class=\"\"><\/picture><\/a>\n\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"glide__slide\">\n\t\t\t\t<a href=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/about-us\/meet-the-team\/linda-page\/\" class=\"team-card\">\n\t<div class=\"team-card__content\">\n\t\t<h3>Linda Page<\/h3>\n\t\t\t\t<span>Senior Client Relationship Manager<\/span>\n\n\t\t\t\t\t<p>Linda joined the Body Talk team in 2020 as a Client Relationship Executive and brings 10 years of experience in the Events &#038; Tourism industries. Through consultative conversation, Linda creates effective face-to-face and virtual training solutions and is always looking for inventive ways to add value to training events, aiming to exceed client needs and expectations.<\/p>\n\t\t\t<\/div>\n\t<picture alt=\"Meet The Team profile image\"><source media=\"(min-width: 992px)\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1573\/Linda-Page-scaled-498x572-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1573\/Linda-Page-scaled-996x1144-c.jpg 2.000x\"><source media=\"(min-width: 768px)\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1573\/Linda-Page-scaled-472x542-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1573\/Linda-Page-scaled-944x1084-c.jpg 2.000x\"><source media=\"(min-width: 0px)\" loading=\"lazy\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1573\/Linda-Page-scaled-268x308-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1573\/Linda-Page-scaled-536x616-c.jpg 2.000x\"><img decoding=\"async\" loading=\"lazy\" loading=\"lazy\" src=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1573\/Linda-Page-scaled-268x308-c.jpg\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1573\/Linda-Page-scaled-268x308-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1573\/Linda-Page-scaled-536x616-c.jpg 2.000x\" alt=\"Linda Page\" width=\"498\" height=\"572\" class=\"\"><\/picture><\/a>\n\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"glide__slide\">\n\t\t\t\t<a href=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/about-us\/meet-the-team\/anna-raine\/\" class=\"team-card\">\n\t<div class=\"team-card__content\">\n\t\t<h3>Anna Raine<\/h3>\n\t\t\t\t<span>Senior Client Relationship Manager<\/span>\n\n\t\t\t\t\t<p>Anna is the main point of contact for her clients before, during and after their training, establishing their challenges at the outset and making the process of booking and organising the right training programme or event easy and enjoyable.\n<\/p>\n\t\t\t<\/div>\n\t<picture alt=\"Meet The Team profile image\"><source media=\"(min-width: 992px)\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3943\/UKBT_260922-043-v2-1-scaled-498x572-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3943\/UKBT_260922-043-v2-1-scaled-996x1144-c.jpg 2.000x\"><source media=\"(min-width: 768px)\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3943\/UKBT_260922-043-v2-1-scaled-472x542-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3943\/UKBT_260922-043-v2-1-scaled-944x1084-c.jpg 2.000x\"><source media=\"(min-width: 0px)\" loading=\"lazy\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3943\/UKBT_260922-043-v2-1-scaled-268x308-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3943\/UKBT_260922-043-v2-1-scaled-536x616-c.jpg 2.000x\"><img decoding=\"async\" loading=\"lazy\" loading=\"lazy\" src=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3943\/UKBT_260922-043-v2-1-scaled-268x308-c.jpg\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3943\/UKBT_260922-043-v2-1-scaled-268x308-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3943\/UKBT_260922-043-v2-1-scaled-536x616-c.jpg 2.000x\" alt=\"UKBT_260922 043 v2\" width=\"498\" height=\"572\" class=\"\"><\/picture><\/a>\n\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"glide__slide\">\n\t\t\t\t<a href=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/about-us\/meet-the-team\/lindsay-walker\/\" class=\"team-card\">\n\t<div class=\"team-card__content\">\n\t\t<h3>Lindsay Walker<\/h3>\n\t\t\t\t<span>Senior Client Relationship Manager<\/span>\n\n\t\t\t\t\t<p>Lindsay comes to Body Talk with over 5 years of experience with client relationship management and communication skills knowledge.<\/p>\n\t\t\t<\/div>\n\t<picture alt=\"Meet The Team profile image\"><source media=\"(min-width: 992px)\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1574\/Lindsay-Walker-scaled-498x572-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1574\/Lindsay-Walker-scaled-996x1144-c.jpg 2.000x\"><source media=\"(min-width: 768px)\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1574\/Lindsay-Walker-scaled-472x542-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1574\/Lindsay-Walker-scaled-944x1084-c.jpg 2.000x\"><source media=\"(min-width: 0px)\" loading=\"lazy\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1574\/Lindsay-Walker-scaled-268x308-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1574\/Lindsay-Walker-scaled-536x616-c.jpg 2.000x\"><img decoding=\"async\" loading=\"lazy\" loading=\"lazy\" src=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1574\/Lindsay-Walker-scaled-268x308-c.jpg\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1574\/Lindsay-Walker-scaled-268x308-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1574\/Lindsay-Walker-scaled-536x616-c.jpg 2.000x\" alt=\"Lindsay Walker\" width=\"498\" height=\"572\" class=\"\"><\/picture><\/a>\n\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"glide__slide\">\n\t\t\t\t<a href=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/about-us\/meet-the-team\/maria-may\/\" class=\"team-card\">\n\t<div class=\"team-card__content\">\n\t\t<h3>Maria May<\/h3>\n\t\t\t\t<span>New Business and Client Relationship Manager<\/span>\n\n\t\t\t\t\t<p>Maria brings over 8 years of experience working with a wide range of clients across the private and not-for-profit sectors.<\/p>\n\t\t\t<\/div>\n\t<picture alt=\"Meet The Team profile image\"><source media=\"(min-width: 992px)\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3496\/UKBT_Maria_May-391x450-c.jpg 0.787x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3496\/UKBT_Maria_May-391x450-c.jpg 0.787x\"><source media=\"(min-width: 768px)\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3496\/UKBT_Maria_May-391x450-c.jpg 0.830x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3496\/UKBT_Maria_May-391x450-c.jpg 0.830x\"><source media=\"(min-width: 0px)\" loading=\"lazy\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3496\/UKBT_Maria_May-268x308-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3496\/UKBT_Maria_May-391x450-c.jpg 1.461x\"><img decoding=\"async\" loading=\"lazy\" loading=\"lazy\" src=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3496\/UKBT_Maria_May-268x308-c.jpg\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3496\/UKBT_Maria_May-268x308-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/3496\/UKBT_Maria_May-391x450-c.jpg 1.461x\" alt=\"UKBT_Maria_May\" width=\"498\" height=\"572\" class=\"\"><\/picture><\/a>\n\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"glide__slide\">\n\t\t\t\t<a href=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/about-us\/meet-the-team\/keeley-pate\/\" class=\"team-card\">\n\t<div class=\"team-card__content\">\n\t\t<h3>Keeley Pate<\/h3>\n\t\t\t\t<span>Client Services Manager<\/span>\n\n\t\t\t\t\t<p>Keeley is a passionate and highly driven individual who prides herself on delivering the highest levels of Customer Service to all of our clients.<\/p>\n\t\t\t<\/div>\n\t<picture alt=\"Meet The Team profile image\"><source media=\"(min-width: 992px)\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1572\/Keeley-Pate-scaled-498x572-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1572\/Keeley-Pate-scaled-996x1144-c.jpg 2.000x\"><source media=\"(min-width: 768px)\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1572\/Keeley-Pate-scaled-472x542-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1572\/Keeley-Pate-scaled-944x1084-c.jpg 2.000x\"><source media=\"(min-width: 0px)\" loading=\"lazy\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1572\/Keeley-Pate-scaled-268x308-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1572\/Keeley-Pate-scaled-536x616-c.jpg 2.000x\"><img decoding=\"async\" loading=\"lazy\" loading=\"lazy\" src=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1572\/Keeley-Pate-scaled-268x308-c.jpg\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1572\/Keeley-Pate-scaled-268x308-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1572\/Keeley-Pate-scaled-536x616-c.jpg 2.000x\" alt=\"Keeley Pate\" width=\"498\" height=\"572\" class=\"\"><\/picture><\/a>\n\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"glide__slide\">\n\t\t\t\t<a href=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/about-us\/meet-the-team\/victoria-siggery\/\" class=\"team-card\">\n\t<div class=\"team-card__content\">\n\t\t<h3>Victoria Siggery<\/h3>\n\t\t\t\t<span>Client Services Manager<\/span>\n\n\t\t\t\t\t<p>Victoria is an experienced account manager with a wealth of experience in customer relations in aerospace, retail and events.<\/p>\n\t\t\t<\/div>\n\t<picture alt=\"Meet The Team profile image\"><source media=\"(min-width: 992px)\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/2548\/Victoria-web-498x572-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/2548\/Victoria-web-996x1144-c.jpg 2.000x\"><source media=\"(min-width: 768px)\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/2548\/Victoria-web-472x542-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/2548\/Victoria-web-944x1084-c.jpg 2.000x\"><source media=\"(min-width: 0px)\" loading=\"lazy\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/2548\/Victoria-web-268x308-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/2548\/Victoria-web-536x616-c.jpg 2.000x\"><img decoding=\"async\" loading=\"lazy\" loading=\"lazy\" src=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/2548\/Victoria-web-268x308-c.jpg\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/2548\/Victoria-web-268x308-c.jpg 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/2548\/Victoria-web-536x616-c.jpg 2.000x\" alt=\"Victoria&#8212;web\" width=\"498\" height=\"572\" class=\"\"><\/picture><\/a>\n\t\t\t<\/li>\n\t\t\t\t<\/ul>\n    <\/div>\n<\/section>\n\n\n\n\t\t<section id=\"\"\t\tclass=\"title-body title-body--image-blockquote     m-top--6 m-bottom--6  js-sticky-section block\">\n\t\t<div class=\"grid-container\">\n\t\t\t<div class=\"row\">\n\t\t\t\t<div class=\"col-12 col-md-5\" data-aos=\"fade-up\">\n\t\t\t\t\t<span class=\"title-body__subheading\"><\/span>\t\t\t\t\t<h2 class=\"title-body__heading\">Do you have more to offer?<\/h2>\t\t\t\t\t<div class=\"wysiwyg\">\n\t\t\t\t\t\t<p>We\u2019re actively interested in talking to people with a wealth of experience in speaking and presentation. See what we\u2019re looking for on our dedicated careers page.<\/p>\n\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"button-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<a href=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/about-us\/careers\/\" class=\"btn button button--outline-black\" target=\"\" >Find out more<svg width=\"17\" height=\"16\" viewBox=\"0 0 17 16\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M8.00391 0.426757L7.75781 0.672851C7.58203 0.848632 7.58203 1.09473 7.75781 1.27051L14.0156 7.52832L0.796875 7.52832C0.585937 7.52832 0.375 7.73926 0.375 7.9502L0.375 8.30176C0.375 8.54785 0.585937 8.72363 0.796875 8.72363L14.0156 8.72363L7.75781 15.0166C7.58203 15.1924 7.58203 15.4385 7.75781 15.6143L8.00391 15.8604C8.17969 16.0361 8.42578 16.0361 8.60156 15.8604L16.0195 8.44238C16.1953 8.2666 16.1953 8.02051 16.0195 7.84473L8.60156 0.426757C8.42578 0.250976 8.17969 0.250976 8.00391 0.426757Z\" fill=\"#181423\"\/><\/svg><\/a>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t<div class=\"col-12 col-md-6 offset-md-1 quote-container \" data-aos=\"fade-up\" data-aos-delay=\"150\">\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<picture class=\"title-body__image\" alt=\"\"><source media=\"(min-width: 992px)\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1586\/Keynotes-conferences-1-664x359-c.png 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1586\/Keynotes-conferences-1-1328x718-c.png 2.000x\"><source media=\"(min-width: 768px)\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1586\/Keynotes-conferences-1-345x186-c.png 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1586\/Keynotes-conferences-1-690x372-c.png 2.000x\"><source media=\"(min-width: 0px)\" loading=\"lazy\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1586\/Keynotes-conferences-1-327x177-c.png 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1586\/Keynotes-conferences-1-654x354-c.png 2.000x\"><img decoding=\"async\" loading=\"lazy\" loading=\"lazy\" src=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1586\/Keynotes-conferences-1-327x177-c.png\" srcset=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1586\/Keynotes-conferences-1-327x177-c.png 1.000x,https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-content\/uploads\/fly-images\/1586\/Keynotes-conferences-1-654x354-c.png 2.000x\" alt=\"Keynotes &#038; conferences\" width=\"664\" height=\"359\" class=\"\"><\/picture>\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t<div class=\"title-body__blockquote \">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p>\u201cWe absolutely love training our clients and seeing the results they achieve in such a short period of time. This is our passion, not just our profession!\u201d<\/p>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span>Richard Newman, Founder and CEO<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/section>\n\n\n\n\n<section id=\"\" class=\"contact-form  bg--white     contact-form--light-bg js-sticky-section block\" data-enquiry-page=\"Meet The Team\">\n\t<div class=\"grid-container\">\n\t\t<div class=\"row\">\n\t\t\t<div class=\"col-12 col-md-5\" data-aos=\"fade-up\">\n\t\t\t\t<h2 class=\"contact-form__heading\">Learn the secrets of long-term confidence and results<\/h2>\t\t\t\t\t\t\t\t<div class=\"wysiwyg\">\n\t\t\t\t\tIf you want to empower yourself and your teams to become more confident, engaging and inspiring, we can help \u2013 at your headquarters or online, wherever you are in the world.<br \/>\r\n<br \/>\r\nTake the first step by completing the form.<br \/>\r\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t<div class=\"col-12 col-md-6 offset-md-1\" data-aos=\"fade-up\" data-aos-delay=\"150\">\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t<script>\n\t\t\t\t\t\t\twindow.hsFormsOnReady = window.hsFormsOnReady || [];\n\t\t\t\t\t\t\twindow.hsFormsOnReady.push(()=>{\n\t\t\t\t\t\t\t\thbspt.forms.create({\n\t\t\t\t\t\t\t\t\tportalId: 4311802,\n\t\t\t\t\t\t\t\t\tformId: \"077ed33d-65c9-4bc3-bbee-9c0081837c5e\",\n\t\t\t\t\t\t\t\t\ttarget: \"#hbspt-form-1779479394000-2884808480\",\n\t\t\t\t\t\t\t\t\tregion: \"na1\",\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t})});\n\t\t\t\t\t\t<\/script>\n\t\t\t\t\t\t<div class=\"hbspt-form\" id=\"hbspt-form-1779479394000-2884808480\"><\/div>\t\t\t\t\n\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\n\t<\/div>\n\n\t<\/section>\n\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":8,"featured_media":0,"parent":568,"menu_order":2,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":true,"content-type":"","footnotes":""},"training_type":[],"group_size":[],"training_duration":[],"class_list":["post-592","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Meet The Team - Body Talk<\/title>\n<meta name=\"description\" content=\"Put faces to the names and get an understanding of the depth of skills and experience within the Body Talk team.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-json\/wp\/v2\/pages\/592\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Meet The Team - Body Talk\" \/>\n<meta property=\"og:description\" content=\"Put faces to the names and get an understanding of the depth of skills and experience within the Body Talk team.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/about-us\/meet-the-team\/\" \/>\n<meta property=\"og:site_name\" content=\"Body Talk\" \/>\n<meta property=\"article:modified_time\" content=\"2024-05-28T10:39:16+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/about-us\/meet-the-team\/\",\"url\":\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/about-us\/meet-the-team\/\",\"name\":\"Meet The Team - Body Talk\",\"isPartOf\":{\"@id\":\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/#website\"},\"datePublished\":\"2023-03-16T18:53:22+00:00\",\"dateModified\":\"2024-05-28T10:39:16+00:00\",\"description\":\"Put faces to the names and get an understanding of the depth of skills and experience within the Body Talk team.\",\"breadcrumb\":{\"@id\":\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/about-us\/meet-the-team\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/about-us\/meet-the-team\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/about-us\/meet-the-team\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"About\",\"item\":\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/about-us\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Meet The Team\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/#website\",\"url\":\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/\",\"name\":\"Body Talk\",\"description\":\"The Science of Communication\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/dev.twentytwo.digital\/ukbodytalk\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Meet The Team - Body Talk","description":"Put faces to the names and get an understanding of the depth of skills and experience within the Body Talk team.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-json\/wp\/v2\/pages\/592","og_locale":"en_GB","og_type":"article","og_title":"Meet The Team - Body Talk","og_description":"Put faces to the names and get an understanding of the depth of skills and experience within the Body Talk team.","og_url":"https:\/\/dev.twentytwo.digital\/ukbodytalk\/about-us\/meet-the-team\/","og_site_name":"Body Talk","article_modified_time":"2024-05-28T10:39:16+00:00","twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/dev.twentytwo.digital\/ukbodytalk\/about-us\/meet-the-team\/","url":"https:\/\/dev.twentytwo.digital\/ukbodytalk\/about-us\/meet-the-team\/","name":"Meet The Team - Body Talk","isPartOf":{"@id":"https:\/\/dev.twentytwo.digital\/ukbodytalk\/#website"},"datePublished":"2023-03-16T18:53:22+00:00","dateModified":"2024-05-28T10:39:16+00:00","description":"Put faces to the names and get an understanding of the depth of skills and experience within the Body Talk team.","breadcrumb":{"@id":"https:\/\/dev.twentytwo.digital\/ukbodytalk\/about-us\/meet-the-team\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/dev.twentytwo.digital\/ukbodytalk\/about-us\/meet-the-team\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/dev.twentytwo.digital\/ukbodytalk\/about-us\/meet-the-team\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/dev.twentytwo.digital\/ukbodytalk\/"},{"@type":"ListItem","position":2,"name":"About","item":"https:\/\/dev.twentytwo.digital\/ukbodytalk\/about-us\/"},{"@type":"ListItem","position":3,"name":"Meet The Team"}]},{"@type":"WebSite","@id":"https:\/\/dev.twentytwo.digital\/ukbodytalk\/#website","url":"https:\/\/dev.twentytwo.digital\/ukbodytalk\/","name":"Body Talk","description":"The Science of Communication","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/dev.twentytwo.digital\/ukbodytalk\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"}]}},"_links":{"self":[{"href":"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-json\/wp\/v2\/pages\/592","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-json\/wp\/v2\/users\/8"}],"replies":[{"embeddable":true,"href":"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-json\/wp\/v2\/comments?post=592"}],"version-history":[{"count":0,"href":"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-json\/wp\/v2\/pages\/592\/revisions"}],"up":[{"embeddable":true,"href":"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-json\/wp\/v2\/pages\/568"}],"wp:attachment":[{"href":"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-json\/wp\/v2\/media?parent=592"}],"wp:term":[{"taxonomy":"training_type","embeddable":true,"href":"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-json\/wp\/v2\/training_type?post=592"},{"taxonomy":"group_size","embeddable":true,"href":"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-json\/wp\/v2\/group_size?post=592"},{"taxonomy":"training_duration","embeddable":true,"href":"https:\/\/dev.twentytwo.digital\/ukbodytalk\/wp-json\/wp\/v2\/training_duration?post=592"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}