diff --git a/assets/images/bottom-card-image-01.png b/assets/images/bottom-card-image-01.png
new file mode 100644
index 0000000..cc0c273
Binary files /dev/null and b/assets/images/bottom-card-image-01.png differ
diff --git a/assets/images/bottom-card-image-02.png b/assets/images/bottom-card-image-02.png
new file mode 100644
index 0000000..27bb36f
Binary files /dev/null and b/assets/images/bottom-card-image-02.png differ
diff --git a/assets/images/bottom-card-image-03.png b/assets/images/bottom-card-image-03.png
new file mode 100644
index 0000000..a99ed6d
Binary files /dev/null and b/assets/images/bottom-card-image-03.png differ
diff --git a/assets/images/bottom-card-image-04.png b/assets/images/bottom-card-image-04.png
new file mode 100644
index 0000000..494f8d6
Binary files /dev/null and b/assets/images/bottom-card-image-04.png differ
diff --git a/assets/images/bottom-infocard-image.png b/assets/images/bottom-infocard-image.png
new file mode 100644
index 0000000..ee68371
Binary files /dev/null and b/assets/images/bottom-infocard-image.png differ
diff --git a/assets/images/facebook-icon.svg b/assets/images/facebook-icon.svg
new file mode 100644
index 0000000..411b9bc
--- /dev/null
+++ b/assets/images/facebook-icon.svg
@@ -0,0 +1,3 @@
+
+
+
diff --git a/assets/images/instagram-icon.svg b/assets/images/instagram-icon.svg
new file mode 100644
index 0000000..b4ca66b
--- /dev/null
+++ b/assets/images/instagram-icon.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/assets/images/m3-logo.svg b/assets/images/m3-logo.svg
new file mode 100644
index 0000000..d0656f5
--- /dev/null
+++ b/assets/images/m3-logo.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/assets/images/main-banner-desktop.png b/assets/images/main-banner-desktop.png
new file mode 100644
index 0000000..5d94877
Binary files /dev/null and b/assets/images/main-banner-desktop.png differ
diff --git a/assets/images/main-banner-mobile.png b/assets/images/main-banner-mobile.png
new file mode 100644
index 0000000..098a4dc
Binary files /dev/null and b/assets/images/main-banner-mobile.png differ
diff --git a/assets/images/middle-banner-desktop.png b/assets/images/middle-banner-desktop.png
new file mode 100644
index 0000000..5c80163
Binary files /dev/null and b/assets/images/middle-banner-desktop.png differ
diff --git a/assets/images/middle-banner-mobile.png b/assets/images/middle-banner-mobile.png
new file mode 100644
index 0000000..36b8374
Binary files /dev/null and b/assets/images/middle-banner-mobile.png differ
diff --git a/assets/images/top-card-image-01.png b/assets/images/top-card-image-01.png
new file mode 100644
index 0000000..5940676
Binary files /dev/null and b/assets/images/top-card-image-01.png differ
diff --git a/assets/images/top-card-image-02.png b/assets/images/top-card-image-02.png
new file mode 100644
index 0000000..cc589c4
Binary files /dev/null and b/assets/images/top-card-image-02.png differ
diff --git a/assets/images/top-card-image-03.png b/assets/images/top-card-image-03.png
new file mode 100644
index 0000000..d24ad6a
Binary files /dev/null and b/assets/images/top-card-image-03.png differ
diff --git a/assets/images/top-infocard-image.png b/assets/images/top-infocard-image.png
new file mode 100644
index 0000000..b715118
Binary files /dev/null and b/assets/images/top-infocard-image.png differ
diff --git a/assets/images/youtube-icon.svg b/assets/images/youtube-icon.svg
new file mode 100644
index 0000000..de6f9a7
--- /dev/null
+++ b/assets/images/youtube-icon.svg
@@ -0,0 +1,3 @@
+
+
+
diff --git a/assets/styles/main.css b/assets/styles/main.css
new file mode 100644
index 0000000..a0d0c55
--- /dev/null
+++ b/assets/styles/main.css
@@ -0,0 +1,291 @@
+* {
+ margin:0;
+ padding: 0;
+ box-sizing: border-box;
+}
+
+body{
+ font-family: 'Inter', sans-serif;
+ color:#000000;
+}
+
+.page-header{
+ display: flex;
+ justify-content: center;
+ background: #000000;
+ padding: 28px 0;
+}
+
+.header-logo{
+ display: block;
+}
+
+.main-banner,
+.middle-banner{
+ width: 100%;
+ display: block;
+}
+
+.top-infocard{
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ padding: 80px 0 96px;
+ gap: 124px;
+}
+
+.top-infocard-text{
+ max-width:766px;
+}
+
+.top-infocard-subtitle{
+ font-weight: 400;
+ font-size: 32px;
+ text-transform: uppercase;
+}
+
+.top-infocard-title{
+ margin-bottom: 24px;
+ font-weight: 500;
+ font-size: 48px;
+ text-transform: uppercase;
+}
+
+.top-infocard-description{
+ font-size: 16px;
+ line-height: 24px;
+}
+
+.top-cards{
+ display: grid;
+ grid-template-columns: repeat(3, max-content);
+ gap: 20px;
+ justify-content: center;
+ padding: 74px 0;
+ background: #F0F0F0;
+}
+
+.top-card{
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ padding: 26px 26px 34px;
+ background: #FFFFFF;
+ box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.23);
+
+}
+
+.top-card-image{
+ display: block;
+ margin-bottom: 26px;
+}
+
+.top-card-description{
+ max-width: 300px;
+ font-size: 16px;
+ line-height: 24px;
+ text-align: center;
+}
+
+.bottom-cards{
+ margin-top: 140px;
+ background: linear-gradient(180deg, #00C8FF 0%, #15ACD6 100%);
+}
+
+.bottom-cards-wrapper{
+ display: grid;
+ grid-template-columns: repeat(2, max-content);
+ gap: 20px;
+ justify-content: center;
+ position: relative;
+ top: -60px;
+}
+
+.bottom-card{
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ padding: 36px 32px 66px;
+ background: #FFFFFF;
+ box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.15);
+}
+
+.bottom-card-images{
+ display: block;
+ margin-bottom: 14px;
+}
+.bottom-card-description{
+ max-width: 368px;
+ font-size: 16px;
+ line-height: 24px;
+ text-align: center;
+}
+
+.bottom-infocard{
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ padding: 142px 0 180px;
+}
+
+.bottom-infocard-image{
+ margin-right: 40px;
+}
+
+.bottom-infocard-text{
+ max-width: 550px;
+}
+
+.bottom-infocard-title{
+ margin-bottom: 18px;
+ font-weight: 600;
+ font-size: 32px;
+ line-height: 1px;
+}
+
+.bottom-infocard-description{
+ font-size: 16px;
+ line-height: 24px;
+}
+
+.page-footer{
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ padding: 38px 0;
+ background: #000000;
+}
+
+.footer-icons{
+ display: flex;
+ list-style: none;
+ margin-bottom: 16px;
+
+}
+
+.footer-icon{
+ margin: 0 8px;
+}
+
+.footer-text{
+ font-size: 10px;
+ line-height: 12px;
+ text-transform: uppercase;
+ color: #BDBDBD;
+}
+
+
+
+@media screen and (max-width: 414px) {
+ .main-banner-desktop,
+ .middle-banner-desktop{
+ display: none;
+ }
+}
+
+@media screen and (min-width: 415px){
+ .main-banner-mobile,
+ .middle-banner-mobile{
+ display: none;
+ }
+}
+
+@media screen and (max-width: 768px) {
+ .top-cards{
+ grid-template-columns: 1fr;
+ padding: 36px 26px;
+ }
+
+ .bottom-cards{
+ margin-top: 114px;
+ padding: 0 26px;
+ }
+
+ .bottom-cards-wrapper{
+ grid-template-columns: 1fr;
+ gap: 16px;
+ }
+
+ .bottom-card-description{
+ font-size: 14px;
+ }
+
+ .page-foote{
+ padding-bottom: 26px;
+ }
+
+ .footer-text{
+ max-width: 280px;
+ text-align: center;
+ }
+}
+
+
+@media screen and (max-width: 992px) {
+ .top-infocard{
+ flex-direction: column;
+ gap: 68px;
+ padding: 84px 26px 158px ;
+ }
+
+
+ .top-infocard-subtitle{
+ font-size: 20px;
+ }
+
+ .top-infocard-title{
+ margin-bottom: 20px;
+ font-size: 28px;
+ }
+
+ .top-infocard-image{
+ width: 100%;
+ max-width: 240px;
+ }
+
+ .bottom-infocard{
+ flex-direction: column;
+ padding: 80px 0 136px;
+ }
+
+ .bottom-infocard-image{
+ width: 100%;
+ max-width: 596px;
+ margin: 0 0 50px;
+ }
+
+ .bottom-infocard-text{
+ padding: 0 26px;
+ }
+
+ .bottom-infocard-title{
+ font-size: 24px;
+ }
+}
+
+@media screen and (min-width: 769px) and (max-width:1200px){
+ .top-cards{
+ grid-template-columns: repeat(2, max-content);
+ }
+}
+
+@media screen and (min-width: 769px) and (max-width:992px){
+ .bottom-card-description{
+ max-width: 280px;
+ }
+}
+
+@media screen and (min-width: 993px) and (max-width: 1280px){
+ .top-infocard-text{
+ max-width: 440px;
+ }
+
+ .bottom-infocard-image{
+ max-width: 480px;
+ }
+
+ .bottom-infocard-text{
+ min-width: 400px;
+ }
+}
+
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..7810547
--- /dev/null
+++ b/index.html
@@ -0,0 +1,148 @@
+
+
+
+
+
+
+
+
+
+
+
+ M3 Landing Page
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Lorem ipsum
+
Dolor sit amet
+
+
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras euismod enim non dui fringilla interdum. Curabitur ut tortor sed lacus egestas vulputate vel sit amet velit. Nulla suscipit magna dui.
+
+
+
+
+
+
+
+
+
+
+
+
+
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras euismod enim non dui fringilla interdum.
+
+
+
+
+
+
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras euismod enim non dui fringilla interdum.
+
+
+
+
+
+
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras euismod enim non dui fringilla interdum.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras euismod enim non dui fringilla interdum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras euismod enim non dui fringilla interdum.
+
+
+
+
+
+
+
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras euismod enim non dui fringilla interdum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras euismod enim non dui fringilla interdum.
+
+
+
+
+
+
+
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras euismod enim non dui fringilla interdum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras euismod enim non dui fringilla interdum.
+
+
+
+
+
+
+
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras euismod enim non dui fringilla interdum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras euismod enim non dui fringilla interdum.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Lorem ipsum dolor sit amet
+
+
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras vulputate sapien non libero faucibus interdum. In eget tincidunt ipsum.
+ Quisque a tellus at lectus blandit tempor. Ut tristique auctor mi eget hendrerit. Curabitur venenatis felis vitae sagittis venenatis.
+ Donec finibus turpis vitae lectus interdum rutrum vitae sed augue.
+
+
+
+
+
+
+
+