diff --git a/web/content/_index.pandoc b/web/content/_index.pandoc
index 88da80b11b133040d838ac7ef57e979b234a515d..25c3f0917c2d4bccc0ea89bc839b64a7c84d3330 100644
--- a/web/content/_index.pandoc
+++ b/web/content/_index.pandoc
@@ -10,6 +10,22 @@ hero:
   textline: OpenGeoSys (OGS) is a scientific [open source project](https://github.com/ufz/ogs) for the development of numerical methods for the simulation of thermo-hydro-mechanical-chemical (THMC) processes in porous and fractured media. It has been successfully applied in the fields of contaminant hydrology, water resources and waste management, geotechnical applications, geothermal energy systems and energy storage.
 
 features:
+- headline: High performance computing
+  textline: |
+    High performance computing (HPC) has became a necessity in the modelling of environmental and geotechnical problems for better characterization of the complexity of geo-systems as well as predicting their evolution in time. Parallel computing is the most efficient method in the high performance computing. In OGS, the parallalization of the finite element (FE) computation is based on the domain decomposition method (DDC).
+
+    Decomposed global matricies and vectors are handled by PETSc and the system of linear equations are solved by the performant PETSc solver. PETSc builds upon the Message Passing Interface (MPI) suitable for a wide variety of parallel computing architectures.
+
+    Parallelization is implemented for single processes as well problems with coupled processes which are using the same order of element for each process.
+  visual:
+    permalink: "/features/HPC-DDC.png"
+    alt: Domain decomposition for parallel processing
+    rounded: true
+  links:
+    - text: Learn more
+      url: "/features/hpc"
+  layout: left
+
 - headline: Comprehensive Pre-Processing Tools
   textline: |
     A wide range of helper tools exist to get your model up and running with OpenGeoSys.
diff --git a/web/content/features/HPC-DDC.png b/web/content/features/HPC-DDC.png
new file mode 100644
index 0000000000000000000000000000000000000000..01c2f05f75daedf8c2a43b5f7ec6f0e35a8b2513
--- /dev/null
+++ b/web/content/features/HPC-DDC.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:34527fb50cddabbc9c934fdcf18e7cccd7902443b473cce2bdbf8c3e111ed7ac
+size 171839
diff --git a/web/layouts/partials/components/feature.html b/web/layouts/partials/components/feature.html
index 4941e13f3772618b89833da285554c11a487d379..cdd1858e8c6c730edeb0a737ee3f3eaa8472d7eb 100644
--- a/web/layouts/partials/components/feature.html
+++ b/web/layouts/partials/components/feature.html
@@ -15,7 +15,7 @@
         </div>
       </div>
       <div class="w-full md:w-1/2 md:px-4">
-        <img src="{{ .feature.visual.permalink }}">
+        <img class="{{ if .feature.visual.rounded }}rounded shadow-lg{{ end }}" src="{{ .feature.visual.permalink }}">
       </div>
       {{ partial "components/subfeatures" .feature.subfeatures }}
     </div>