diff --git a/src/pages/home/components/ContacPage.tsx b/src/pages/home/components/ContacPage.tsx
index df4fa73..786c028 100644
--- a/src/pages/home/components/ContacPage.tsx
+++ b/src/pages/home/components/ContacPage.tsx
@@ -1,9 +1,11 @@
import styled from "styled-components";
import React from "react";
+import { layoutBreak } from "../../../functions/styles";
const Container = styled.div`
align-items: center;
- padding-bottom: 100px;
+ padding: 0 20px;
+ margin-bottom: 100px;
`;
const Title = styled.h3`
@@ -22,14 +24,18 @@ const Company = styled.img.attrs({
src: require("../../../assets/images/company.png"),
alt: "Tappollo"
})`
- width: 122px;
- margin-right: 30px;
+ width: 80px;
+ margin-right: 15px;
+ @media (min-width: ${layoutBreak}px) {
+ width: 122px;
+ margin-right: 30px;
+ }
`;
const Name = styled.h3`
font-family: "Barlow Condensed", sans-serif;
font-size: 60px;
- height: 80px;
+ line-height: 70px;
color: #e85a4a;
text-transform: uppercase;
`;
diff --git a/src/pages/home/components/FeaturesPage.tsx b/src/pages/home/components/FeaturesPage.tsx
index 9f14ca7..8fc7e0d 100644
--- a/src/pages/home/components/FeaturesPage.tsx
+++ b/src/pages/home/components/FeaturesPage.tsx
@@ -109,8 +109,8 @@ Cell.Title = styled.h3<{ reversed: boolean }>`
Cell.Image = styled.div<{ image: any; image2x: any }>`
background-image: ${props => `url(${props.image})`};
- width: 400px;
- height: 400px;
+ width: 350px;
+ height: 350px;
background-size: contain;
background-position: center;
background-repeat: no-repeat;
diff --git a/src/pages/home/components/WhoWeArePage.tsx b/src/pages/home/components/WhoWeArePage.tsx
index 5f1ea16..1daa026 100644
--- a/src/pages/home/components/WhoWeArePage.tsx
+++ b/src/pages/home/components/WhoWeArePage.tsx
@@ -6,7 +6,7 @@ import WhoWeAreAnimation from "./WhoWeAreAnimation";
import NavigationRow from "./NavigationRow";
const Container = styled.div`
- flex-direction: column;
+ flex-direction: column-reverse;
@media (min-width: ${layoutBreak}px) {
align-items: center;
flex-direction: row;
@@ -59,7 +59,25 @@ const Title = styled.h1`
}
`;
-const Header = styled.div`
+const Header = () => (
+