diff --git a/content/research/_index.md b/content/research/_index.md
index d1f72a6cabc087854ed8659c6e5b5da72a00850c..6103422f761c20382db9c38aff15347682b86054 100644
--- a/content/research/_index.md
+++ b/content/research/_index.md
@@ -41,13 +41,15 @@ custom_jumbotron: |
 
 {{< pages/research/home-section-organizations >}}
 
-{{< grid/section-container class="row-gray padding-top-40 padding-bottom-40 margin-bottom-40" isMarkdown="false" >}}
+{{< grid/section-container class="row-gray padding-top-40 padding-bottom-40" isMarkdown="false" >}}
     <h2 class="text-center margin-bottom-40">The Eclipse Foundation is a Partner in these Projects</h2>
     {{< eclipsefdn_projects is_static_source="true" url="/research/projects/index.json" templateId="tpl-projects-item-research" display_view_more="false" >}}
 {{</ grid/section-container >}}
 
+{{< pages/research/collaboration-section >}}
+
 {{< pages/research/newsroom-section working_group="research" class="margin-bottom-30" resource_class="col-md-5 newsroom-resource-card newsroom-resource-card-match-height match-height-item" >}}
 
 {{< pages/research/home-section-contact >}}
 
-{{< mustache_js template-id="tpl-projects-item-research" path="/js/src/templates/research/tpl-projects-item-research.mustache" >}}
\ No newline at end of file
+{{< mustache_js template-id="tpl-projects-item-research" path="/js/src/templates/research/tpl-projects-item-research.mustache" >}}
diff --git a/data/research/collaborations.yml b/data/research/collaborations.yml
new file mode 100644
index 0000000000000000000000000000000000000000..c628fc6accee29628b4281dabbb8509da96da49d
--- /dev/null
+++ b/data/research/collaborations.yml
@@ -0,0 +1,17 @@
+items: 
+  - name: GEMOC Research Consortium
+    summary: >-
+      GEMOC is an open and international initiative that aims to coordinate and
+      disseminate the research results regarding the support of the coordinated
+      use of various modeling languages that will lead to the concept of the
+      globalization of modeling languages.
+    logo: /images/research/gemoc-research-consortium.png 
+    url: https://gemoc.org/
+  - name: Software Defined Vehicle
+    summary: >-
+      An open technology platform for the software defined vehicle of the
+      future; focused on accelerating innovation of automotive-grade in-car
+      software stacks using open source and open specifications developed by a
+      vibrant community.
+    logo: https://www.eclipse.org/org/workinggroups/assets/images/wg-sdv.svg
+    url: https://sdv.eclipse.org/
diff --git a/layouts/shortcodes/pages/research/collaboration-section.html b/layouts/shortcodes/pages/research/collaboration-section.html
new file mode 100644
index 0000000000000000000000000000000000000000..707e2b2cef6c55b1dd2ace7eefc272768e449151
--- /dev/null
+++ b/layouts/shortcodes/pages/research/collaboration-section.html
@@ -0,0 +1,35 @@
+{{ $collaborations := .Site.Data.research.collaborations }}
+<section class="row row-gray padding-bottom-40 margin-bottom-20" id="collaborations">
+  <div class="container">
+    <h2 class="text-center margin-bottom-60">The Research team is supporting these groups</h2>
+    <div class="container">
+      <div class="row">
+        <div class="col-md-24">
+          <ul class="list-inline list">
+            {{ range $collaborations.items }}
+              <li class="col-md-6 col-sm-12">
+                <div class="featured-projects-item tpl-projects-research match-height-item-by-row" data-mh="m-header">
+                  <div class="featured-projects-item-category category labels">{{ .name }}</div>
+                  <div class="featured-projects-item-content">
+                    <a href="{{ .url }}" class="link">
+                      <img class="featured-projects-item-img img-responsive logo logo_alt" alt="{{ .name }}" src="{{ .logo }}" height="40">
+                    </a>
+                    <div class="featured-projects-item-text">
+                      <p class="description">{{ .summary }}</p>
+                    </div>
+                  </div>
+                  <div class="details">
+                    <div class="featured-projects-website-url">
+                      <a href="{{ .url }}">Visit Website</a>
+                      <span class="featured-projects-website-url-bar"></span>
+                    </div>
+                  </div>
+                </div>
+              </li>
+            {{ end }}
+          </ul>
+        </div>
+      </div>
+    </div>
+  </div>
+</section>
diff --git a/static/images/research/gemoc-research-consortium.png b/static/images/research/gemoc-research-consortium.png
new file mode 100755
index 0000000000000000000000000000000000000000..bbdff9973978239e9f1d2cf3a8a5499365e4f83a
Binary files /dev/null and b/static/images/research/gemoc-research-consortium.png differ