diff --git a/css/styles.css b/css/styles.css
new file mode 100644
index 0000000..ffa4a6a
--- /dev/null
+++ b/css/styles.css
@@ -0,0 +1,203 @@
+:root {
+ --iris: #4d5ae5;
+ --navyblue: #2e2f42;
+ --ocean: #404bbf;
+ --white: #fff;
+ --slate: #434455;
+ --cornflower: #e7e9fc;
+ --cloud: #f4f4fd;
+}
+
+body {
+ font-family: Roboto, sans-serif;
+ font-size: 16px;
+ font-style: normal;
+ font-weight: 400;
+ line-height: 24px;
+ letter-spacing: 0.32px;
+}
+
+.logo {
+ text-decoration: none;
+ font-family: Raleway, sans-serif;
+ font-size: 18px;
+ font-weight: 800;
+ line-height: 21px;
+ letter-spacing: 0.54px;
+ text-transform: uppercase;
+}
+
+.weblogo {
+ color: var(--iris, #4d5ae5);
+}
+
+.studiologo {
+ color: var(--navyblue, #2e2f42);
+}
+
+.linkpage {
+ text-decoration: none;
+ color: var(--navyblue, #2e2f42);
+ font-weight: 500;
+}
+
+.linkpage:hover,
+.linkpage:focus {
+ color: var(--ocean, #404bbf);
+}
+
+.link-active {
+ color: var(--ocean, #404bbf);
+}
+
+.contacts {
+ color: var(--slate, #434455);
+ text-decoration: none;
+}
+
+.contacts:hover,
+.contacts:focus {
+ color: var(--ocean, #404bbf);
+}
+
+.list {
+ list-style-type: none;
+ margin: 0;
+ padding: 0;
+}
+
+.bg-sec1 {
+ background-color: var(--navyblue, #2e2f42);
+ margin: 0%;
+ padding: 0%;
+}
+
+.sec1-title {
+ color: var(--white, #fff);
+ text-align: center;
+ font-size: 56px;
+ font-weight: 700;
+ text-transform: uppercase;
+ line-height: 60px;
+ letter-spacing: 1.12px;
+}
+
+.order-button {
+ cursor: pointer;
+ color: var(--white, #fff);
+ background: var(--iris, #4d5ae5);
+ font-family: inherit;
+ font-size: 16px;
+ font-weight: 500;
+ letter-spacing: 0.64px;
+ border: none;
+ border-radius: 4px;
+ box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
+}
+
+.order-button:hover,
+.order-button:focus {
+ color: var(--white, #fff);
+ background-color: var(--ocean, #05092f);
+}
+
+.section2 {
+ background-color: var(--white, #fff);
+}
+
+.about-title {
+ color: var(--navyblue, #2e2f42);
+ font-size: 20px;
+ font-weight: 500;
+ letter-spacing: 0.4px;
+}
+
+.about-description {
+ color: var(--slate, #434455);
+}
+
+.section3 {
+ background-color: var(--white, #fff);
+}
+
+.sec-title {
+ color: var(--navyblue, #2e2f42);
+ text-align: center;
+ font-size: 36px;
+ font-weight: 700;
+ line-height: 40px;
+ letter-spacing: 0.72px;
+ text-transform: capitalize;
+}
+
+.section4 {
+ background-color: var(--cloud, #f4f4fd);
+}
+
+.team-members {
+ color: var(--navyblue, #2e2f42);
+ font-size: 20px;
+ font-weight: 500;
+ letter-spacing: 0.4px;
+}
+
+.team-jobrole {
+ color: var(--slate, #434455);
+}
+
+.portfolio-page {
+ background-color: var(--white, #fff);
+}
+
+.filter-button {
+ cursor: pointer;
+ color: var(--iris, #4d5ae5);
+ background-color: var(--cloud, #f4f4fd);
+ text-align: center;
+ font-family: inherit;
+ font-size: 16px;
+ font-weight: 500;
+ letter-spacing: 0.64px;
+ border-radius: 4px;
+ border: 1px solid var(--cornflower, #e7e9fc);
+}
+
+.filter-button:hover,
+.filter-button:focus {
+ color: var(--cloud, #f4f4fd);
+ background-color: var(--ocean, #05092f);
+ border-color: var(--ocean, #05092f);
+ box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.12),
+ 0px 2px 1px 0px rgba(0, 0, 0, 0.08), 0px 3px 1px 0px rgba(0, 0, 0, 0.1);
+}
+
+.active-filter {
+ color: var(--white, #fff);
+ background-color: var(--ocean, #05092f);
+ border-color: var(--ocean, #05092f);
+ box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.12),
+ 0px 2px 1px 0px rgba(0, 0, 0, 0.08), 0px 3px 1px 0px rgba(0, 0, 0, 0.1);
+}
+
+.portfolio-service {
+ color: var(--navyblue, #2e2f42);
+ font-size: 20px;
+ font-weight: 500;
+ letter-spacing: 0.4px;
+}
+
+.portfolio-category {
+ color: var(--slate, #434455);
+}
+
+.footer {
+ background-color: var(--navyblue, #2e2f42);
+}
+
+.studiologo2 {
+ color: var(--cloud, #f4f4fd);
+}
+
+.motto {
+ color: var(--cloud, #f4f4fd);
+}
diff --git a/images/our-team-1.jpg b/images/our-team-1.jpg
new file mode 100644
index 0000000..0cfd305
Binary files /dev/null and b/images/our-team-1.jpg differ
diff --git a/images/our-team-2.jpg b/images/our-team-2.jpg
new file mode 100644
index 0000000..af341f9
Binary files /dev/null and b/images/our-team-2.jpg differ
diff --git a/images/our-team-3.jpg b/images/our-team-3.jpg
new file mode 100644
index 0000000..4d7c7ba
Binary files /dev/null and b/images/our-team-3.jpg differ
diff --git a/images/our-team-4.jpg b/images/our-team-4.jpg
new file mode 100644
index 0000000..ef32e02
Binary files /dev/null and b/images/our-team-4.jpg differ
diff --git a/images/project-1.jpg b/images/project-1.jpg
new file mode 100644
index 0000000..46fdc78
Binary files /dev/null and b/images/project-1.jpg differ
diff --git a/images/project-2.jpg b/images/project-2.jpg
new file mode 100644
index 0000000..e0e7e15
Binary files /dev/null and b/images/project-2.jpg differ
diff --git a/images/project-3.jpg b/images/project-3.jpg
new file mode 100644
index 0000000..cb489c4
Binary files /dev/null and b/images/project-3.jpg differ
diff --git a/images/project-4.jpg b/images/project-4.jpg
new file mode 100644
index 0000000..a7d3ee5
Binary files /dev/null and b/images/project-4.jpg differ
diff --git a/images/project-5.jpg b/images/project-5.jpg
new file mode 100644
index 0000000..2ac15fe
Binary files /dev/null and b/images/project-5.jpg differ
diff --git a/images/project-6.jpg b/images/project-6.jpg
new file mode 100644
index 0000000..90becd0
Binary files /dev/null and b/images/project-6.jpg differ
diff --git a/images/project-7.jpg b/images/project-7.jpg
new file mode 100644
index 0000000..8c08b28
Binary files /dev/null and b/images/project-7.jpg differ
diff --git a/images/project-8.jpg b/images/project-8.jpg
new file mode 100644
index 0000000..c4daed4
Binary files /dev/null and b/images/project-8.jpg differ
diff --git a/images/project-9.jpg b/images/project-9.jpg
new file mode 100644
index 0000000..3d4f3a8
Binary files /dev/null and b/images/project-9.jpg differ
diff --git a/images/what-we-do-1.jpg b/images/what-we-do-1.jpg
new file mode 100644
index 0000000..439f96d
Binary files /dev/null and b/images/what-we-do-1.jpg differ
diff --git a/images/what-we-do-2.jpg b/images/what-we-do-2.jpg
new file mode 100644
index 0000000..5260fb2
Binary files /dev/null and b/images/what-we-do-2.jpg differ
diff --git a/images/what-we-do-3.jpg b/images/what-we-do-3.jpg
new file mode 100644
index 0000000..47415e3
Binary files /dev/null and b/images/what-we-do-3.jpg differ
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..15ee3f9
--- /dev/null
+++ b/index.html
@@ -0,0 +1,144 @@
+
+
+
+
+
+ Go IT WEBSTUDIO - Homework2
+
+
+
+
+
+
+
+
+ EFFECTIVE SOLUTION
for YOUR BUSINESS
+
+
+
+
+ -
+
Strategy
+
+ Our goal is to identify the business problem to walk away with the
+ perfect and creative solution.
+
+
+ -
+
Punctuality
+
+ Bring the key message to the brand's audience for the best price
+ within the shortest possible time.
+
+
+ -
+
Diligence
+
+ Research and confirm brands that present the strongest digital
+ growth opportunities and minimize risk.
+
+
+ -
+
Technoligies
+
+ Design practice focused on digital experiences. We brign forth a
+ deep passion for problem-solving.
+
+
+
+
+
+
+ Our Team
+
+ -
+
+
Mark Guererro
+ Product Designer
+
+ -
+
+
Tom Ford
+ Frontend Developer
+
+ -
+
+
Camila Garcia
+ Marketing
+
+ -
+
+
Daniel Wilson
+ UI Designer
+
+
+
+
+
+
+
+
diff --git a/portfolio.html b/portfolio.html
new file mode 100644
index 0000000..3929d06
--- /dev/null
+++ b/portfolio.html
@@ -0,0 +1,167 @@
+
+
+
+
+
+ Go IT WEBSTUDIO - Homework2
+
+
+
+
+
+
+
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+
+
+ -
+
+
Banking App Interface Concept
+ App
+
+ -
+
+
Cashless Payment
+ Marketing
+
+ -
+
+
Meditation App
+ App
+
+ -
+
+
Taxi Service
+ Marketing
+
+ -
+
+
Screen Illustrations
+ Design
+
+ -
+
+
Online Courses
+ Marketing
+
+ -
+
+
Instagram Stories Concept
+ Design
+
+ -
+
+
Organic Food
+ Web Site
+
+ -
+
+
Fresh Coffee
+ Web Site
+
+
+
+
+
+
+
+