diff --git a/src/components/common/header/header.module.scss b/src/components/common/header/header.module.scss
index a6430c8..8375c09 100644
--- a/src/components/common/header/header.module.scss
+++ b/src/components/common/header/header.module.scss
@@ -110,22 +110,22 @@
}
.social {
- display: grid;
+ display: flex;
+ flex-flow: row wrap;
position: relative;
- justify-content: center;
- margin: tovw(16px, 'mobile') 0;
+ place-content: center;
+ margin: tovw(16px, 'mobile') auto;
padding-top: tovw(10px, 'mobile');
- width: 100%;
+ width: 70%;
gap: tovw(24px, 'mobile');
grid-template-columns: repeat(6, tovw(24px, 'mobile'));
&::after {
position: absolute;
top: tovw(-32px, 'mobile');
- left: tovw(-16px, 'mobile');
margin: tovw(15px, 'mobile') 0;
background: white;
- width: calc(100% + tovw(32px, 'mobile'));
+ width: calc(100vw - tovw(32px, 'mobile'));
height: tovw(1px, 'mobile', 1px);
content: '';
}
diff --git a/src/components/sections/about/hero/hero.module.scss b/src/components/sections/about/hero/hero.module.scss
index deb1d3e..5e6cda0 100644
--- a/src/components/sections/about/hero/hero.module.scss
+++ b/src/components/sections/about/hero/hero.module.scss
@@ -13,6 +13,29 @@
max-width: 100%;
min-height: calc(var(--vh) * 100);
+ .hero__container {
+ @include respond-to('mobile') {
+ display: flex;
+ place-content: center;
+ min-height: tovw(430px, 'mobile', 495px);
+ }
+
+ display: none;
+
+ .hero__mobile {
+ @include respond-to('mobile') {
+ display: flex;
+ margin: tovw(30px, 'mobile', 75px) 0 tovw(-25px, 'mobile')
+ tovw(10px, 'mobile', 10px);
+ width: 300%;
+ mix-blend-mode: screen;
+ place-self: center;
+ }
+
+ display: none;
+ }
+ }
+
.video_container {
@include respond-to('mobile') {
min-height: unset;
@@ -53,19 +76,6 @@
content: '';
}
}
-
- .hero__mobile {
- @include respond-to('mobile') {
- display: flex;
- margin: tovw(30px, 'mobile', 75px) 0 tovw(-25px, 'mobile')
- tovw(10px, 'mobile', 10px);
- width: 300%;
- mix-blend-mode: screen;
- place-self: center;
- }
-
- display: none;
- }
}
.container {
diff --git a/src/components/sections/about/hero/index.tsx b/src/components/sections/about/hero/index.tsx
index 581edda..fa8c4c3 100644
--- a/src/components/sections/about/hero/index.tsx
+++ b/src/components/sections/about/hero/index.tsx
@@ -35,12 +35,14 @@ const Hero = ({ data }: Props) => {
+
+
+
+