{"id":17795,"date":"2023-12-07T13:09:01","date_gmt":"2023-12-07T18:09:01","guid":{"rendered":"https:\/\/themedtechconference.com\/?page_id=17795"},"modified":"2026-08-13T11:11:27","modified_gmt":"2026-08-13T15:11:27","slug":"who-attends","status":"publish","type":"page","link":"https:\/\/themedtechconference.com\/who-attends\/","title":{"rendered":"Who Attends"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"17795\" class=\"elementor elementor-17795\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4bd5823 e-flex e-con-boxed e-con e-parent\" data-id=\"4bd5823\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b36400d elementor-widget elementor-widget-text-editor\" data-id=\"b36400d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>From global manufacturers and startups to investors, policy leaders, and health care leaders, The MedTech Conference brings the full medtech ecosystem together in Boston this October.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ef643fa elementor-widget elementor-widget-heading\" data-id=\"ef643fa\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Who Attends<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7193131 elementor-widget elementor-widget-html\" data-id=\"7193131\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<!DOCTYPE html>\r\n<html lang=\"en\">\r\n<head>\r\n  <meta charset=\"UTF-8\" \/>\r\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" \/>\r\n  <title>Leaders by Job Function \u2014 MTC26<\/title>\r\n  <style>\r\n    body {\r\n      margin: 0;\r\n      padding: 0;\r\n      background: #ffffff;\r\n      font-family: Arial, Helvetica, sans-serif;\r\n    }\r\n    .chart-wrapper {\r\n      max-width: 700px;\r\n      margin: 0 auto;\r\n      padding: 24px 16px;\r\n    }\r\n    .chart-container {\r\n      position: relative;\r\n      width: 100%;\r\n      height: 420px;\r\n    }\r\n  <\/style>\r\n<\/head>\r\n<body>\r\n\r\n  <div class=\"chart-wrapper\">\r\n    <div class=\"chart-container\">\r\n      <canvas id=\"jobChart\"\r\n        role=\"img\"\r\n        aria-label=\"Pie chart: Other\/Mid-Level 40%, VP+C-Suite 29%, CEOs 24%, Student\/Early Career\/Veteran 6%, Government\/Public Official\/HB 1%\">\r\n        Leaders by job function: Other\/Mid-Level 40%, VP+C-Suite 29%, CEOs 24%, Student\/Early Career\/Veteran 6%, Government\/Public Official\/HB 1%.\r\n      <\/canvas>\r\n    <\/div>\r\n  <\/div>\r\n\r\n  <script src=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/Chart.js\/4.4.1\/chart.umd.js\"><\/script>\r\n  <script>\r\n    const ctx = document.getElementById('jobChart');\r\n\r\n    const outsideLabelsPlugin = {\r\n      id: 'outsideLabels',\r\n      afterDraw(chart) {\r\n        const { ctx: c, chartArea: { width, height, left, top } } = chart;\r\n        const cx = left + width \/ 2;\r\n        const cy = top + height \/ 2;\r\n        const meta = chart.getDatasetMeta(0);\r\n        const dataset = chart.data.datasets[0];\r\n        const labels = chart.data.labels;\r\n\r\n        c.save();\r\n\r\n        meta.data.forEach((arc, i) => {\r\n          const pct = dataset.data[i];\r\n          if (pct < 1) return;\r\n\r\n          const midAngle = (arc.startAngle + arc.endAngle) \/ 2;\r\n          const outerRadius = arc.outerRadius;\r\n          const cosA = Math.cos(midAngle);\r\n          const sinA = Math.sin(midAngle);\r\n\r\n          \/\/ Force Gov\/Public Official (index 4, 1%) to right side\r\n          const forceRight = (i === 4);\r\n          const effectiveCosA = forceRight ? Math.abs(cosA) : cosA;\r\n          const isRight = forceRight ? true : cosA >= 0;\r\n\r\n          const elbow = outerRadius + 22;\r\n          const ex = cx + effectiveCosA * elbow;\r\n          const ey = cy + sinA * elbow;\r\n          const extendX = isRight ? ex + 32 : ex - 32;\r\n\r\n          const lineStartX = cx + cosA * (outerRadius + 5);\r\n          const lineStartY = cy + sinA * (outerRadius + 5);\r\n          const lineMidX = forceRight ? cx + Math.abs(cosA) * (outerRadius + 22) : ex;\r\n          const lineMidY = ey;\r\n\r\n          c.beginPath();\r\n          c.moveTo(lineStartX, lineStartY);\r\n          c.lineTo(lineMidX, lineMidY);\r\n          c.lineTo(extendX, lineMidY);\r\n          c.strokeStyle = dataset.backgroundColor[i];\r\n          c.lineWidth = 1.5;\r\n          c.stroke();\r\n\r\n          const words = labels[i].split(' ');\r\n          const maxWidth = 90;\r\n          c.font = '13px Arial, Helvetica, sans-serif';\r\n          const lines = [];\r\n          let line = '';\r\n          words.forEach(word => {\r\n            const test = line ? line + ' ' + word : word;\r\n            if (c.measureText(test).width > maxWidth && line) {\r\n              lines.push(line);\r\n              line = word;\r\n            } else {\r\n              line = test;\r\n            }\r\n          });\r\n          if (line) lines.push(line);\r\n          lines.push(pct + '%');\r\n\r\n          const lineH = 17;\r\n          const totalH = lines.length * lineH;\r\n          const startY = ey - totalH \/ 2;\r\n          const textX = isRight ? extendX + 6 : extendX - 6;\r\n\r\n          lines.forEach((ln, li) => {\r\n            const isPercent = ln === pct + '%';\r\n            c.font = isPercent\r\n              ? 'bold 15px Arial, Helvetica, sans-serif'\r\n              : '13px Arial, Helvetica, sans-serif';\r\n            c.fillStyle = isPercent ? dataset.backgroundColor[i] : '#222222';\r\n            c.textAlign = isRight ? 'left' : 'right';\r\n            c.fillText(ln, textX, startY + li * lineH + lineH \/ 2);\r\n          });\r\n        });\r\n\r\n        c.restore();\r\n      }\r\n    };\r\n\r\n    new Chart(ctx, {\r\n      type: 'pie',\r\n      plugins: [outsideLabelsPlugin],\r\n      data: {\r\n        labels: [\r\n          'VP+C-Suite',\r\n          'Other\/Mid-Level',\r\n          'CEOs',\r\n          'Student\/Early Career\/Veteran',\r\n          'Gov\/Public Official\/HB'\r\n        ],\r\n        datasets: [{\r\n          data: [29, 40, 24, 6, 1],\r\n          backgroundColor: ['#2C03DD', '#47D1F2', '#2965F2', '#7FFFA3', '#E68FF9'],\r\n          borderColor: '#ffffff',\r\n          borderWidth: 3,\r\n          hoverOffset: 12\r\n        }]\r\n      },\r\n      options: {\r\n        responsive: true,\r\n        maintainAspectRatio: false,\r\n        layout: {\r\n          padding: { top: 60, bottom: 60, left: 130, right: 130 }\r\n        },\r\n        animation: {\r\n          animateRotate: true,\r\n          animateScale: true,\r\n          duration: 1100,\r\n          easing: 'easeInOutQuart'\r\n        },\r\n        plugins: {\r\n          legend: { display: false },\r\n          tooltip: {\r\n            callbacks: {\r\n              label: (ctx) => '  ' + ctx.parsed + '%'\r\n            },\r\n            bodyFont: { size: 14, family: 'Arial, Helvetica, sans-serif' },\r\n            titleFont: { family: 'Arial, Helvetica, sans-serif' },\r\n            padding: 10,\r\n            backgroundColor: '#2C03DD',\r\n            bodyColor: '#ffffff',\r\n            titleColor: '#7FFFA3',\r\n            cornerRadius: 8\r\n          }\r\n        }\r\n      }\r\n    });\r\n  <\/script>\r\n\r\n<\/body>\r\n<\/html>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-379e4b3 e-flex e-con-boxed e-con e-parent\" data-id=\"379e4b3\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-97e6b87 e-con-full e-flex e-con e-child\" data-id=\"97e6b87\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-452fcdc elementor-align-center elementor-widget elementor-widget-button\" data-id=\"452fcdc\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/themedtechconference.com\/mtc25-attendee-list\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Sample attendee List<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-7c7a7c4 e-con-full e-flex e-con e-child\" data-id=\"7c7a7c4\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5632c18 elementor-align-center elementor-widget elementor-widget-button\" data-id=\"5632c18\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/themedtechconference.com\/register\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Register Now<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-7f9526c5 e-con-full e-flex e-con e-parent\" data-id=\"7f9526c5\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5bdc3cb8 elementor-widget elementor-widget-heading\" data-id=\"5bdc3cb8\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">JOIN THE FULL MEDTECH ECOSYSTEM<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-d34fdc9 elementor-widget elementor-widget-text-editor\" data-id=\"d34fdc9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<h3 style=\"text-align: center;\">Select a group below to learn\u00a0more about the industry leaders, decision-makers, and innovators making #MedTechCon a must-attend event.<\/h3>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-24de83e6 e-con-full e-flex e-con e-child\" data-id=\"24de83e6\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-490da839 e-con-full e-flex e-con e-child\" data-id=\"490da839\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-49876180 elementor-widget elementor-widget-image\" data-id=\"49876180\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/themedtechconference.com\/member\/\">\n\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"400\" height=\"397\" src=\"https:\/\/themedtechconference.com\/wp-content\/uploads\/Stephanie-Pitts-Member-e1786561088136.webp\" class=\"attachment-large size-large wp-image-25970\" alt=\"\" srcset=\"https:\/\/themedtechconference.com\/wp-content\/uploads\/Stephanie-Pitts-Member-e1786561088136.webp 400w, https:\/\/themedtechconference.com\/wp-content\/uploads\/Stephanie-Pitts-Member-e1786561088136-200x200.webp 200w\" sizes=\"(max-width: 400px) 100vw, 400px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-8c24d29 elementor-widget__width-initial elementor-widget elementor-widget-button\" data-id=\"8c24d29\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/themedtechconference.com\/member\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">AdvaMed member companies<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-1a345e11 e-con-full e-flex e-con e-child\" data-id=\"1a345e11\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-18bc4b0c elementor-widget elementor-widget-image\" data-id=\"18bc4b0c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/themedtechconference.com\/start-ups-and-early-stage-companies\/\">\n\t\t\t\t\t\t\t<img decoding=\"async\" width=\"400\" height=\"395\" src=\"https:\/\/themedtechconference.com\/wp-content\/uploads\/Venk-Varadan-Startups-e1786561108437.png\" class=\"attachment-large size-large wp-image-25969\" alt=\"\" srcset=\"https:\/\/themedtechconference.com\/wp-content\/uploads\/Venk-Varadan-Startups-e1786561108437.png 400w, https:\/\/themedtechconference.com\/wp-content\/uploads\/Venk-Varadan-Startups-e1786561108437-200x198.png 200w\" sizes=\"(max-width: 400px) 100vw, 400px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5a3ec21 elementor-widget__width-initial elementor-widget elementor-widget-button\" data-id=\"5a3ec21\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/themedtechconference.com\/start-ups-and-early-stage-companies\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">start-ups, early stage companies<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-61474018 e-con-full e-flex e-con e-child\" data-id=\"61474018\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1ef67068 elementor-widget elementor-widget-image\" data-id=\"1ef67068\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/themedtechconference.com\/service-providers-and-suppliers\/\">\n\t\t\t\t\t\t\t<img decoding=\"async\" width=\"397\" height=\"400\" src=\"https:\/\/themedtechconference.com\/wp-content\/uploads\/Service-Providers-e1786561245400.png\" class=\"attachment-large size-large wp-image-25971\" alt=\"\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0d0d69f elementor-widget__width-initial elementor-widget elementor-widget-button\" data-id=\"0d0d69f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/themedtechconference.com\/service-providers-and-suppliers\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">service providers, suppliers<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-5f7f925 e-con-full e-flex e-con e-parent\" data-id=\"5f7f925\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-6ec0df9 e-con-full e-flex e-con e-child\" data-id=\"6ec0df9\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-0418437 e-con-full e-flex e-con e-child\" data-id=\"0418437\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-df22f6e elementor-widget elementor-widget-image\" data-id=\"df22f6e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/themedtechconference.com\/hospital-and-government\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"400\" height=\"397\" src=\"https:\/\/themedtechconference.com\/wp-content\/uploads\/Houston-Methodist-Hospital-e1786561133354.png\" class=\"attachment-large size-large wp-image-25973\" alt=\"\" srcset=\"https:\/\/themedtechconference.com\/wp-content\/uploads\/Houston-Methodist-Hospital-e1786561133354.png 400w, https:\/\/themedtechconference.com\/wp-content\/uploads\/Houston-Methodist-Hospital-e1786561133354-200x200.png 200w\" sizes=\"(max-width: 400px) 100vw, 400px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1940ede elementor-widget__width-initial elementor-widget elementor-widget-button\" data-id=\"1940ede\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/themedtechconference.com\/hospital-and-government\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">hospital, government<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-1d8bca1 e-con-full e-flex e-con e-child\" data-id=\"1d8bca1\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a2b64db elementor-widget elementor-widget-image\" data-id=\"a2b64db\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/themedtechconference.com\/established-manufacturers\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"400\" height=\"397\" src=\"https:\/\/themedtechconference.com\/wp-content\/uploads\/Lisa-Earnhardt-Est-Manu-e1786561154753.png\" class=\"attachment-large size-large wp-image-25972\" alt=\"\" srcset=\"https:\/\/themedtechconference.com\/wp-content\/uploads\/Lisa-Earnhardt-Est-Manu-e1786561154753.png 400w, https:\/\/themedtechconference.com\/wp-content\/uploads\/Lisa-Earnhardt-Est-Manu-e1786561154753-200x200.png 200w\" sizes=\"(max-width: 400px) 100vw, 400px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-d26b4e4 elementor-widget__width-initial elementor-widget elementor-widget-button\" data-id=\"d26b4e4\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/themedtechconference.com\/established-manufacturers\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">established manufacturers<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-ab49550 e-con-full e-flex e-con e-child\" data-id=\"ab49550\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-9be86de elementor-widget elementor-widget-image\" data-id=\"9be86de\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/themedtechconference.com\/next-gen-hq\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"400\" height=\"399\" src=\"https:\/\/themedtechconference.com\/wp-content\/uploads\/Early-Career-V2-e1786561182372.png\" class=\"attachment-large size-large wp-image-25974\" alt=\"\" srcset=\"https:\/\/themedtechconference.com\/wp-content\/uploads\/Early-Career-V2-e1786561182372.png 400w, https:\/\/themedtechconference.com\/wp-content\/uploads\/Early-Career-V2-e1786561182372-200x200.png 200w\" sizes=\"(max-width: 400px) 100vw, 400px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-326961d elementor-widget__width-initial elementor-widget elementor-widget-button\" data-id=\"326961d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/themedtechconference.com\/next-gen-hq\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">student, early career<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-1eb8e40 e-flex e-con-boxed e-con e-parent\" data-id=\"1eb8e40\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2924a8f e-con-full e-flex e-con e-parent\" data-id=\"2924a8f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-a7e0d50 e-con-full e-flex e-con e-child\" data-id=\"a7e0d50\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-434f372 elementor-widget elementor-widget-video\" data-id=\"434f372\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;youtube_url&quot;:&quot;https:\\\/\\\/youtu.be\\\/nOvGYlkc2ww?si=dH-vy9glw6NbsHk5&quot;,&quot;video_type&quot;:&quot;youtube&quot;,&quot;controls&quot;:&quot;yes&quot;}\" data-widget_type=\"video.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-wrapper elementor-open-inline\">\n\t\t\t<div class=\"elementor-video\"><\/div>\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-1cd3367 e-con-full e-flex e-con e-child\" data-id=\"1cd3367\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1ee310b elementor-widget elementor-widget-video\" data-id=\"1ee310b\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;youtube_url&quot;:&quot;https:\\\/\\\/youtu.be\\\/LrqEs3xQEOE?si=hdEo472xp22RtE0d&quot;,&quot;video_type&quot;:&quot;youtube&quot;,&quot;controls&quot;:&quot;yes&quot;}\" data-widget_type=\"video.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-wrapper elementor-open-inline\">\n\t\t\t<div class=\"elementor-video\"><\/div>\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-757b2da e-con-full e-flex e-con e-child\" data-id=\"757b2da\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-ce6a452 elementor-widget elementor-widget-video\" data-id=\"ce6a452\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;youtube_url&quot;:&quot;https:\\\/\\\/youtu.be\\\/qM6-1aL4pKA?si=ph3tzBKfn9atfrYK&quot;,&quot;autoplay&quot;:&quot;yes&quot;,&quot;mute&quot;:&quot;yes&quot;,&quot;video_type&quot;:&quot;youtube&quot;,&quot;controls&quot;:&quot;yes&quot;}\" data-widget_type=\"video.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-wrapper elementor-open-inline\">\n\t\t\t<div class=\"elementor-video\"><\/div>\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-5cac489 e-flex e-con-boxed e-con e-parent\" data-id=\"5cac489\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-ea97728 elementor-testimonial--skin-default elementor-testimonial--layout-image_inline elementor-testimonial--align-center elementor-arrows-yes elementor-pagination-type-bullets elementor-widget elementor-widget-testimonial-carousel\" data-id=\"ea97728\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;space_between&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;show_arrows&quot;:&quot;yes&quot;,&quot;pagination&quot;:&quot;bullets&quot;,&quot;speed&quot;:500,&quot;autoplay&quot;:&quot;yes&quot;,&quot;autoplay_speed&quot;:5000,&quot;loop&quot;:&quot;yes&quot;,&quot;pause_on_hover&quot;:&quot;yes&quot;,&quot;pause_on_interaction&quot;:&quot;yes&quot;,&quot;space_between_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:10,&quot;sizes&quot;:[]},&quot;space_between_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:10,&quot;sizes&quot;:[]}}\" data-widget_type=\"testimonial-carousel.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-swiper\">\n\t\t\t\t\t<div class=\"elementor-main-swiper swiper\" role=\"region\" aria-roledescription=\"carousel\" aria-label=\"Slides\">\n\t\t\t\t<div class=\"swiper-wrapper\">\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-testimonial\">\n\t\t\t\t\t\t\t<div class=\"elementor-testimonial__content\">\n\t\t\t\t\t<div class=\"elementor-testimonial__text\">\n\t\t\t\t\t\tWe're an early stage company so it's easy to focus on funding, but [The MedTech Conference] has provided so much more... We also found our development and quality partners here that have helped other start-ups scale.\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"elementor-testimonial__footer\">\n\t\t\t\t\t\t\t\t<cite class=\"elementor-testimonial__cite\"><span class=\"elementor-testimonial__name\">Steve Morrow<\/span><span class=\"elementor-testimonial__title\">CFO, Forest Devices<\/span><\/cite>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-testimonial\">\n\t\t\t\t\t\t\t<div class=\"elementor-testimonial__content\">\n\t\t\t\t\t<div class=\"elementor-testimonial__text\">\n\t\t\t\t\t\t\u201cWhat better place do you have to meet the top CEOs of very large companies, small start-ups and everything in between?\u201d\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"elementor-testimonial__footer\">\n\t\t\t\t\t\t\t\t<cite class=\"elementor-testimonial__cite\"><span class=\"elementor-testimonial__name\">Kevin Lobo<\/span><span class=\"elementor-testimonial__title\">Chairman and CEO, Stryker<\/span><\/cite>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-testimonial\">\n\t\t\t\t\t\t\t<div class=\"elementor-testimonial__content\">\n\t\t\t\t\t<div class=\"elementor-testimonial__text\">\n\t\t\t\t\t\tThe MedTech Conference is the most valuable tool we have for networking.\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"elementor-testimonial__footer\">\n\t\t\t\t\t\t\t\t<cite class=\"elementor-testimonial__cite\"><span class=\"elementor-testimonial__name\">Tami Annable<\/span><span class=\"elementor-testimonial__title\">Executive Director, Temple Health and Bioscience District<\/span><\/cite>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-testimonial\">\n\t\t\t\t\t\t\t<div class=\"elementor-testimonial__content\">\n\t\t\t\t\t<div class=\"elementor-testimonial__text\">\n\t\t\t\t\t\t\u201cIt is the venue to engage with policymakers globally, and our company has found tremendous value in that opportunity.\u201d\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"elementor-testimonial__footer\">\n\t\t\t\t\t\t\t\t<cite class=\"elementor-testimonial__cite\"><span class=\"elementor-testimonial__name\">Elizabeth Woody<\/span><span class=\"elementor-testimonial__title\">VP, Public Affairs, BD<\/span><\/cite>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-testimonial\">\n\t\t\t\t\t\t\t<div class=\"elementor-testimonial__content\">\n\t\t\t\t\t<div class=\"elementor-testimonial__text\">\n\t\t\t\t\t\t\u201cThis is where I meet with our industry \u2013 with my peers, with suppliers, with colleagues\u2026 It\u2019s the one conference I would not miss for anything.\u201d\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"elementor-testimonial__footer\">\n\t\t\t\t\t\t\t\t<cite class=\"elementor-testimonial__cite\"><span class=\"elementor-testimonial__name\">Nadim Yared<\/span><span class=\"elementor-testimonial__title\">President and CEO, CVRx<\/span><\/cite>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-testimonial\">\n\t\t\t\t\t\t\t<div class=\"elementor-testimonial__content\">\n\t\t\t\t\t<div class=\"elementor-testimonial__text\">\n\t\t\t\t\t\t\u201cThe MedTech Conference is a phenomenal steward for bridging the small companies with the large cap and established companies in the industry.\u201d\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"elementor-testimonial__footer\">\n\t\t\t\t\t\t\t\t<cite class=\"elementor-testimonial__cite\"><span class=\"elementor-testimonial__name\">Venk Varadan<\/span><span class=\"elementor-testimonial__title\">Founder & CEO, Nanowear, Inc.<\/span><\/cite>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-testimonial\">\n\t\t\t\t\t\t\t<div class=\"elementor-testimonial__content\">\n\t\t\t\t\t<div class=\"elementor-testimonial__text\">\n\t\t\t\t\t\t... Where the rubber meets the road in collaborative value creation.\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"elementor-testimonial__footer\">\n\t\t\t\t\t\t\t\t<cite class=\"elementor-testimonial__cite\"><span class=\"elementor-testimonial__name\">Adolfo Llin\u00e1s, MD<\/span><span class=\"elementor-testimonial__title\">CMO, Fundaci\u00f3n Santa Fe de Bogot\u00e1, Colombia<\/span><\/cite>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-testimonial\">\n\t\t\t\t\t\t\t<div class=\"elementor-testimonial__content\">\n\t\t\t\t\t<div class=\"elementor-testimonial__text\">\n\t\t\t\t\t\t\"Attending The MedTech Conference opened my eyes to the many career paths in medtech and gave me the chance to connect with leaders shaping the future of health care.\u201d\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"elementor-testimonial__footer\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-swiper-button elementor-swiper-button-prev\" role=\"button\" tabindex=\"0\" aria-label=\"Previous\">\n\t\t\t\t\t\t\t<i aria-hidden=\"true\" class=\"eicon-chevron-left\"><\/i>\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"elementor-swiper-button elementor-swiper-button-next\" role=\"button\" tabindex=\"0\" aria-label=\"Next\">\n\t\t\t\t\t\t\t<i aria-hidden=\"true\" class=\"eicon-chevron-right\"><\/i>\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-pagination\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-985d83e e-con-full e-flex e-con e-parent\" data-id=\"985d83e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-c0a1c62 e-con-full e-flex e-con e-child\" data-id=\"c0a1c62\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-0d35c8a elementor-widget__width-initial elementor-widget elementor-widget-video\" data-id=\"0d35c8a\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;youtube_url&quot;:&quot;https:\\\/\\\/youtu.be\\\/X_PiveDBGRY?si=FZS6XHyCKu9hhCa0&quot;,&quot;video_type&quot;:&quot;youtube&quot;,&quot;controls&quot;:&quot;yes&quot;}\" data-widget_type=\"video.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-wrapper elementor-open-inline\">\n\t\t\t<div class=\"elementor-video\"><\/div>\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-793b2b6 e-con-full e-flex e-con e-child\" data-id=\"793b2b6\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5597684 elementor-widget__width-initial elementor-widget elementor-widget-video\" data-id=\"5597684\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;youtube_url&quot;:&quot;https:\\\/\\\/youtu.be\\\/_5ZldqN7LhI?si=8uSE1JsbbET0OO__&quot;,&quot;video_type&quot;:&quot;youtube&quot;,&quot;controls&quot;:&quot;yes&quot;}\" data-widget_type=\"video.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-wrapper elementor-open-inline\">\n\t\t\t<div class=\"elementor-video\"><\/div>\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div data-dce-background-image-url=\"https:\/\/themedtechconference.com\/wp-content\/uploads\/yellow-seciton-background.svg\" class=\"elementor-element elementor-element-5184d860 e-con-full elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile e-flex e-con e-parent\" data-id=\"5184d860\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-1f317897 e-con-full e-flex e-con e-child\" data-id=\"1f317897\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-15961ee5 elementor-widget elementor-widget-heading\" data-id=\"15961ee5\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">Maximize Your ROI at #MTC25: Partnering Insights &amp; Key Event Updates<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7c7c6495 elementor-widget elementor-widget-text-editor\" data-id=\"7c7c6495\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>The recording of our webinar on maximizing your ROI at The MedTech Conference is now available. Catch up on all the insights to help you make the most of your #MTC25 experience.<\/p>\n<ul>\n<li data-leveltext=\"\uf0b7\" data-font=\"Symbol\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;\uf0b7&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\">A live demo of the partnering platform, MyMedTech, by the AdvaMed Conference team.&nbsp;<\/li>\n<li data-leveltext=\"\uf0b7\" data-font=\"Symbol\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;\uf0b7&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\">Insider tips on maximizing your time in San Diego and ensure you\u2019re prepared for a week packed with key business development opportunities.<\/li>\n<li data-leveltext=\"\uf0b7\" data-font=\"Symbol\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;\uf0b7&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">A day-by-day breakdown of the educational sessions and networking opportunities.<\/span><\/li>\n<\/ul>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-56fd43ee elementor-widget elementor-widget-button\" data-id=\"56fd43ee\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm elementor-animation-grow\" href=\"https:\/\/share.hsforms.com\/1pqJ8WoqJQr-C9UdfnR0zzA1kfjq\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Access The Recording &amp; Slides<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2c6b77b e-flex e-con-boxed e-con e-parent\" data-id=\"2c6b77b\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-58cae79 elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-global elementor-global-24862 elementor-widget-call-to-action\" data-id=\"58cae79\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"call-to-action.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<a class=\"elementor-cta\" href=\"https:\/\/share.hsforms.com\/1am3UJmleR96sKTvh1n_pQg1kfjq\">\n\t\t\t\t\t\t\t<div class=\"elementor-cta__content\">\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<h2 class=\"elementor-cta__title elementor-cta__content-item elementor-content-item\">\n\t\t\t\t\t\tLearn Our Top Tips from MTC 101 Webinar\t\t\t\t\t<\/h2>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-cta__description elementor-cta__content-item elementor-content-item\">\n\t\t\t\t\t\tView The MedTech Conference 101: What's New, Why Attend &amp; How to Maximize ROI \u2014 your insider look at who attends, what's new for 2026, and how to make every moment in Boston count.\nWhether you're a first-timer or a seasoned attendee, you'll leave knowing exactly how to turn four days in Boston into real connections, deals, and momentum. \t\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-cta__button-wrapper elementor-cta__content-item elementor-content-item \">\n\t\t\t\t\t<span class=\"elementor-cta__button elementor-button elementor-size-\">\n\t\t\t\t\t\tmtc 101 webinar slides\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>From global manufacturers and startups to investors, policy leaders, and health care leaders, The MedTech Conference brings the full medtech ecosystem together in Boston this October. Who Attends Leaders by Job Function \u2014 MTC26 Leaders by job function: Other\/Mid-Level 40%, &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"Who Attends\" class=\"read-more button\" href=\"https:\/\/themedtechconference.com\/who-attends\/#more-17795\">Keep Reading<span class=\"screen-reader-text\">Who Attends<\/span><\/a><\/p>\n","protected":false},"author":30,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"content-type":"","footnotes":""},"categories":[],"tags":[],"class_list":["post-17795","page","type-page","status-publish"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Explore Attendee Demographics of The MedTech Conference<\/title>\n<meta name=\"description\" content=\"The MedTech Conference brings in attendees from over 38 countries and 20 sectors. The brightest minds in the medical technologies industry are here.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/themedtechconference.com\/who-attends\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Who Attends #MedTechCon\" \/>\n<meta property=\"og:description\" content=\"From global manufacturers and startups to investors, policymakers, and health care leaders, The MedTech Conference brings the full medtech ecosystem together in Boston this October.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/themedtechconference.com\/who-attends\/\" \/>\n<meta property=\"og:site_name\" content=\"The MedTech Conference\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/MedTechCon\/\" \/>\n<meta property=\"article:modified_time\" content=\"2026-08-13T15:11:27+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/themedtechconference.com\/wp-content\/uploads\/EBP5275-1024x683.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1024\" \/>\n\t<meta property=\"og:image:height\" content=\"683\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@medtechcon\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/themedtechconference.com\\\/who-attends\\\/\",\"url\":\"https:\\\/\\\/themedtechconference.com\\\/who-attends\\\/\",\"name\":\"Explore Attendee Demographics of The MedTech Conference\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/themedtechconference.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/themedtechconference.com\\\/who-attends\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/themedtechconference.com\\\/who-attends\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/themedtechconference.com\\\/wp-content\\\/uploads\\\/Stephanie-Pitts-Member-e1786561088136.webp\",\"datePublished\":\"2023-12-07T18:09:01+00:00\",\"dateModified\":\"2026-08-13T15:11:27+00:00\",\"description\":\"The MedTech Conference brings in attendees from over 38 countries and 20 sectors. The brightest minds in the medical technologies industry are here.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/themedtechconference.com\\\/who-attends\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/themedtechconference.com\\\/who-attends\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/themedtechconference.com\\\/who-attends\\\/#primaryimage\",\"url\":\"https:\\\/\\\/themedtechconference.com\\\/wp-content\\\/uploads\\\/Stephanie-Pitts-Member-e1786561088136.webp\",\"contentUrl\":\"https:\\\/\\\/themedtechconference.com\\\/wp-content\\\/uploads\\\/Stephanie-Pitts-Member-e1786561088136.webp\",\"width\":400,\"height\":397},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/themedtechconference.com\\\/who-attends\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/themedtechconference.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Who Attends\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/themedtechconference.com\\\/#website\",\"url\":\"https:\\\/\\\/themedtechconference.com\\\/\",\"name\":\"The MedTech Conference\",\"description\":\"Where Medtech Innovates\",\"publisher\":{\"@id\":\"https:\\\/\\\/themedtechconference.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/themedtechconference.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/themedtechconference.com\\\/#organization\",\"name\":\"AdvaMed\",\"alternateName\":\"The MedTech Conference\",\"url\":\"https:\\\/\\\/themedtechconference.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/themedtechconference.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/themedtechconference.com\\\/wp-content\\\/uploads\\\/mtc-logo-blue.png\",\"contentUrl\":\"https:\\\/\\\/themedtechconference.com\\\/wp-content\\\/uploads\\\/mtc-logo-blue.png\",\"width\":508,\"height\":87,\"caption\":\"AdvaMed\"},\"image\":{\"@id\":\"https:\\\/\\\/themedtechconference.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/MedTechCon\\\/\",\"https:\\\/\\\/x.com\\\/medtechcon\",\"https:\\\/\\\/www.instagram.com\\\/themedtechconference\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/the-medtech-conference\\\/\",\"https:\\\/\\\/www.youtube.com\\\/user\\\/AdvaMedConference\\\/\"],\"description\":\"AdvaMed (the Advanced Medical Technology Association) is the world\u2019s largest medical technology trade association, representing medtech innovators and organizer of The MedTech Conference.\",\"foundingDate\":\"1975\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Explore Attendee Demographics of The MedTech Conference","description":"The MedTech Conference brings in attendees from over 38 countries and 20 sectors. The brightest minds in the medical technologies industry are here.","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:\/\/themedtechconference.com\/who-attends\/","og_locale":"en_US","og_type":"article","og_title":"Who Attends #MedTechCon","og_description":"From global manufacturers and startups to investors, policymakers, and health care leaders, The MedTech Conference brings the full medtech ecosystem together in Boston this October.","og_url":"https:\/\/themedtechconference.com\/who-attends\/","og_site_name":"The MedTech Conference","article_publisher":"https:\/\/www.facebook.com\/MedTechCon\/","article_modified_time":"2026-08-13T15:11:27+00:00","og_image":[{"width":1024,"height":683,"url":"https:\/\/themedtechconference.com\/wp-content\/uploads\/EBP5275-1024x683.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_site":"@medtechcon","twitter_misc":{"Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/themedtechconference.com\/who-attends\/","url":"https:\/\/themedtechconference.com\/who-attends\/","name":"Explore Attendee Demographics of The MedTech Conference","isPartOf":{"@id":"https:\/\/themedtechconference.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/themedtechconference.com\/who-attends\/#primaryimage"},"image":{"@id":"https:\/\/themedtechconference.com\/who-attends\/#primaryimage"},"thumbnailUrl":"https:\/\/themedtechconference.com\/wp-content\/uploads\/Stephanie-Pitts-Member-e1786561088136.webp","datePublished":"2023-12-07T18:09:01+00:00","dateModified":"2026-08-13T15:11:27+00:00","description":"The MedTech Conference brings in attendees from over 38 countries and 20 sectors. The brightest minds in the medical technologies industry are here.","breadcrumb":{"@id":"https:\/\/themedtechconference.com\/who-attends\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/themedtechconference.com\/who-attends\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/themedtechconference.com\/who-attends\/#primaryimage","url":"https:\/\/themedtechconference.com\/wp-content\/uploads\/Stephanie-Pitts-Member-e1786561088136.webp","contentUrl":"https:\/\/themedtechconference.com\/wp-content\/uploads\/Stephanie-Pitts-Member-e1786561088136.webp","width":400,"height":397},{"@type":"BreadcrumbList","@id":"https:\/\/themedtechconference.com\/who-attends\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/themedtechconference.com\/"},{"@type":"ListItem","position":2,"name":"Who Attends"}]},{"@type":"WebSite","@id":"https:\/\/themedtechconference.com\/#website","url":"https:\/\/themedtechconference.com\/","name":"The MedTech Conference","description":"Where Medtech Innovates","publisher":{"@id":"https:\/\/themedtechconference.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/themedtechconference.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/themedtechconference.com\/#organization","name":"AdvaMed","alternateName":"The MedTech Conference","url":"https:\/\/themedtechconference.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/themedtechconference.com\/#\/schema\/logo\/image\/","url":"https:\/\/themedtechconference.com\/wp-content\/uploads\/mtc-logo-blue.png","contentUrl":"https:\/\/themedtechconference.com\/wp-content\/uploads\/mtc-logo-blue.png","width":508,"height":87,"caption":"AdvaMed"},"image":{"@id":"https:\/\/themedtechconference.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/MedTechCon\/","https:\/\/x.com\/medtechcon","https:\/\/www.instagram.com\/themedtechconference\/","https:\/\/www.linkedin.com\/company\/the-medtech-conference\/","https:\/\/www.youtube.com\/user\/AdvaMedConference\/"],"description":"AdvaMed (the Advanced Medical Technology Association) is the world\u2019s largest medical technology trade association, representing medtech innovators and organizer of The MedTech Conference.","foundingDate":"1975"}]}},"_links":{"self":[{"href":"https:\/\/themedtechconference.com\/api\/wp\/v2\/pages\/17795","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/themedtechconference.com\/api\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/themedtechconference.com\/api\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/themedtechconference.com\/api\/wp\/v2\/users\/30"}],"replies":[{"embeddable":true,"href":"https:\/\/themedtechconference.com\/api\/wp\/v2\/comments?post=17795"}],"version-history":[{"count":42,"href":"https:\/\/themedtechconference.com\/api\/wp\/v2\/pages\/17795\/revisions"}],"predecessor-version":[{"id":26106,"href":"https:\/\/themedtechconference.com\/api\/wp\/v2\/pages\/17795\/revisions\/26106"}],"wp:attachment":[{"href":"https:\/\/themedtechconference.com\/api\/wp\/v2\/media?parent=17795"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/themedtechconference.com\/api\/wp\/v2\/categories?post=17795"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/themedtechconference.com\/api\/wp\/v2\/tags?post=17795"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}