diff --git a/src/components/MidSectionComponentThemeFive/MidSectionThemeFive.md b/src/components/MidSectionComponentThemeFive/MidSectionThemeFive.md
new file mode 100644
index 00000000..ca0a21af
--- /dev/null
+++ b/src/components/MidSectionComponentThemeFive/MidSectionThemeFive.md
@@ -0,0 +1,37 @@
+## Initial Setup
+
+Hope you have successfully set up the project in your local system and install all dependencies
+
+## About the mid-section Component
+
+This is a resuasble component for displaying the information in a two grid system where the first section is to show main features in cards
+and the second section provides a title and description. This Component is highly reusable and customizable via props.
+
+## How to use the component
+
+Import the component to `pages/index.js`
+`import {MidSectionThemeFive} from "../components/MidSectionComponentThemeFive";`
+
+## How to handle props to the component
+
+```
+
+```
+
+`mainText`: prop of type text is the mainText of the section
+`mainHead`: prop of type text is the mainHeading/subtitle of the section
+`mainPara`: prop of type text is the main paragraph present in the section
+`button`: prop of type text is label for the botton present in the section
+`img`: prop of type text is label for the imageURL present in the section
+`secondHead`: prop of type text is label for the botton present in the section
+`secondSubHead`: prop of type text is label for the botton present in the section
+`countItems`: prop of type array is the array of cardItems each having an time and duration
diff --git a/src/components/MidSectionComponentThemeFive/MidSectionThemeFive.stories.js b/src/components/MidSectionComponentThemeFive/MidSectionThemeFive.stories.js
new file mode 100644
index 00000000..19831bf4
--- /dev/null
+++ b/src/components/MidSectionComponentThemeFive/MidSectionThemeFive.stories.js
@@ -0,0 +1,49 @@
+import React from "react";
+import { MidSectionThemeFive } from "./index";
+import "bootstrap/dist/css/bootstrap.css"
+
+export default{
+ title:"theme 5/midSectionComponentThemeFive",
+ component:MidSectionThemeFive,
+ argTypes:{
+ mainText:{control:"text"},
+ mainHead:{control:"text"},
+ mainPara:{control:"text"},
+ button:{control:"text"},
+ img:{control:"text"},
+ secondSubHead:{control:"text"},
+ secondSubHead:{control:"text"},
+ countItems:{control:"array"},
+ }
+}
+
+export const midThemeFive=args=>
+
+midThemeFive.args={
+ mainText:"About Conference",
+ mainHead:"WELCOME TO THE PROJECT MANAGEMENT",
+ mainPara:"The Project Management is a platform to learn expert techniques for building successful project teams, creating efficient plans and implementing effective tracking measures to ensure your projects come in on deadline and on budget. In one fast-paced, well-designed day, we’ll cover all the essential elements of project management.",
+ button:"Interested",
+ img:"https://i.ibb.co/dBzsTZP/Untitled-design.png",
+ secondHead:"CONFERENCE DATE",
+ secondSubHead:"COUNT EVERY SECOND UNTIL THE EVENT",
+ countItems:[
+ {
+ time:"00",
+ duration:"MONTHS"
+ },
+ {
+ time:"00",
+ duration:"DAYS"
+ },
+ {
+ time:"00",
+ duration:"HOURS"
+ },
+ {
+ time:"00",
+ duration:"MINUTES"
+ },
+
+ ]
+}
\ No newline at end of file
diff --git a/src/components/MidSectionComponentThemeFive/index.js b/src/components/MidSectionComponentThemeFive/index.js
new file mode 100644
index 00000000..964e7053
--- /dev/null
+++ b/src/components/MidSectionComponentThemeFive/index.js
@@ -0,0 +1,72 @@
+import React from 'react'
+import PropTypes from "prop-types"
+import "./style.sass"
+import { faArrowRight} from '@fortawesome/free-solid-svg-icons'
+import { Col, Container, Row } from 'react-bootstrap'
+import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
+
+
+
+export const MidSectionThemeFive = ({mainText,mainHead,mainPara,button,img,secondHead,secondSubHead,countItems}) => {
+ return (
+