diff --git a/src/components/common/footer/footer.module.scss b/src/components/common/footer/footer.module.scss index 44ef7bd..cdc8aff 100644 --- a/src/components/common/footer/footer.module.scss +++ b/src/components/common/footer/footer.module.scss @@ -18,12 +18,20 @@ background-image: url('/images/laconic_newsletter_dark.png'); background-position: 50%; background-size: contain; + mix-blend-mode: lighten; display: flex; position: relative; align-items: center; justify-content: center; height: calc(var(--vw) * 60); + @include respond-to('mobile') { + background-size: cover; + width: 150%; + height: calc(var(--vw) * 100); + left: -25%; + } + &::after, &::before { @include respond-to('mobile') { diff --git a/src/components/common/header/header.module.scss b/src/components/common/header/header.module.scss index 9aa9878..8ff698b 100644 --- a/src/components/common/header/header.module.scss +++ b/src/components/common/header/header.module.scss @@ -193,7 +193,7 @@ all: unset; position: relative; display: flex; - flex-flow: row wrap; + flex-flow: column wrap; gap: tovw(14px, 'mobile') tovw(20px, 'mobile'); background-color: unset; border: unset; diff --git a/src/components/sections/about/hero/hero.module.scss b/src/components/sections/about/hero/hero.module.scss index aad980f..22a039d 100644 --- a/src/components/sections/about/hero/hero.module.scss +++ b/src/components/sections/about/hero/hero.module.scss @@ -27,7 +27,7 @@ @include respond-to('mobile') { display: flex; margin: 0 0 tovw(-75px, 'mobile') tovw(10px, 'mobile', 10px); - width: 300%; + width: 100%; mix-blend-mode: screen; place-self: center; } diff --git a/src/components/sections/about/related/index.tsx b/src/components/sections/about/related/index.tsx index 32cb02d..33e7b77 100644 --- a/src/components/sections/about/related/index.tsx +++ b/src/components/sections/about/related/index.tsx @@ -49,7 +49,7 @@ const Related = ({ data, blogData, isInPost, isFeatured, reduced }: Props) => { {isInPost && !isFeatured && 'Related articles'} {isFeatured && !isInPost && data?.featuredHeading} - {!isFeatured && !isInPost && 'Learn more'} + {!isFeatured && !isInPost && 'Learn More'}
diff --git a/src/components/sections/about/roadmap/roadmap.module.scss b/src/components/sections/about/roadmap/roadmap.module.scss index 204a1b8..96d8bec 100644 --- a/src/components/sections/about/roadmap/roadmap.module.scss +++ b/src/components/sections/about/roadmap/roadmap.module.scss @@ -4,6 +4,7 @@ @include respond-to('mobile') { margin-top: 0; padding-top: 0; + padding-bottom: 50px; } position: relative; diff --git a/src/components/sections/careers/hero/hero.module.scss b/src/components/sections/careers/hero/hero.module.scss index ff3ed4d..279bc92 100644 --- a/src/components/sections/careers/hero/hero.module.scss +++ b/src/components/sections/careers/hero/hero.module.scss @@ -77,7 +77,7 @@ display: flex; margin: tovw(50px, 'mobile', 120px) 0 tovw(50px, 'mobile', 70px) tovw(-30px, 'mobile', -30px); - width: 140%; + width: 100%; mix-blend-mode: screen; place-self: center; mask-image: linear-gradient( diff --git a/src/components/sections/careers/values/values.module.scss b/src/components/sections/careers/values/values.module.scss index 08cc614..eee0be6 100644 --- a/src/components/sections/careers/values/values.module.scss +++ b/src/components/sections/careers/values/values.module.scss @@ -37,8 +37,7 @@ .features { @include respond-to('mobile') { - display: flex; - flex-direction: column; + display: block; margin: unset; margin-top: tovw(95px, 'default', 50px); } diff --git a/src/components/sections/community/hero/hero.module.scss b/src/components/sections/community/hero/hero.module.scss index 5db1842..f11f921 100644 --- a/src/components/sections/community/hero/hero.module.scss +++ b/src/components/sections/community/hero/hero.module.scss @@ -34,9 +34,9 @@ .hero__mobile { @include respond-to('mobile') { display: flex; - margin-right: tovw(190px, 'mobile'); + margin-right: tovw(65px, 'mobile'); padding-top: tovw(50px, 'mobile'); - width: 280%; + width: 100%; mix-blend-mode: lighten; place-self: center; } diff --git a/src/components/sections/contact/hero/hero.module.scss b/src/components/sections/contact/hero/hero.module.scss index 89e0f9a..4541765 100644 --- a/src/components/sections/contact/hero/hero.module.scss +++ b/src/components/sections/contact/hero/hero.module.scss @@ -82,7 +82,7 @@ display: flex; margin: tovw(50px, 'mobile', 130px) 0 tovw(50px, 'mobile', 70px) tovw(16px, 'mobile', 20px); - width: 200%; + width: 100%; mix-blend-mode: screen; place-self: center; mask-image: linear-gradient( diff --git a/src/components/sections/homepage/benefits/benefits.module.scss b/src/components/sections/homepage/benefits/benefits.module.scss index 943ea8f..2d42c55 100644 --- a/src/components/sections/homepage/benefits/benefits.module.scss +++ b/src/components/sections/homepage/benefits/benefits.module.scss @@ -18,7 +18,7 @@ } @media screen and (max-width: 1400px) { - padding-bottom: tovw(200px, 'default', 200px); + padding-bottom: tovw(75px, 'default', 75px); } position: relative; diff --git a/src/components/sections/homepage/hero/hero.module.scss b/src/components/sections/homepage/hero/hero.module.scss index f7c492e..09ca69d 100644 --- a/src/components/sections/homepage/hero/hero.module.scss +++ b/src/components/sections/homepage/hero/hero.module.scss @@ -25,6 +25,12 @@ @media screen and (max-width: 422px) { font-size: tovw(42px, 'mobile'); } + + color: var(--color-accent); + + span { + color: var(--color-white); + } } &::after, diff --git a/src/components/sections/homepage/what-others-say/item/item.module.scss b/src/components/sections/homepage/what-others-say/item/item.module.scss index 8f0490d..624871c 100644 --- a/src/components/sections/homepage/what-others-say/item/item.module.scss +++ b/src/components/sections/homepage/what-others-say/item/item.module.scss @@ -8,8 +8,8 @@ transform: none; margin: 0; width: max-content; - height: max-content !important; - min-height: auto !important; + height: tovw(130px, 'mobile', 130px); + min-height: 20% !important; } position: absolute; diff --git a/src/components/sections/homepage/what-others-say/what-others-say.module.scss b/src/components/sections/homepage/what-others-say/what-others-say.module.scss index d771fda..d0c0c20 100644 --- a/src/components/sections/homepage/what-others-say/what-others-say.module.scss +++ b/src/components/sections/homepage/what-others-say/what-others-say.module.scss @@ -101,7 +101,7 @@ } align-items: center; - height: tovw(636px, 'mobile'); + height: tovw(480px, 'mobile'); .image { position: absolute; diff --git a/src/components/sections/newsroom/hero/hero.module.scss b/src/components/sections/newsroom/hero/hero.module.scss index 2049d03..bec018a 100644 --- a/src/components/sections/newsroom/hero/hero.module.scss +++ b/src/components/sections/newsroom/hero/hero.module.scss @@ -75,8 +75,8 @@ &__mobile { @include respond-to('mobile') { display: flex; - margin: tovw(50px, 'mobile', 130px) 0 tovw(50px, 'mobile', 70px) 0; - width: 135%; + margin: auto; + width: 100%; mix-blend-mode: screen; place-self: center; mask-image: linear-gradient( diff --git a/src/components/sections/newsroom/media/media.module.scss b/src/components/sections/newsroom/media/media.module.scss index e3562ba..be1535d 100644 --- a/src/components/sections/newsroom/media/media.module.scss +++ b/src/components/sections/newsroom/media/media.module.scss @@ -3,6 +3,7 @@ .section { @include respond-to('mobile') { padding: 0; + padding-top: tovw(35px, 'mobile'); margin-bottom: tovw(25px, 'mobile'); } @@ -112,11 +113,11 @@ img { width: 100%; - height: calc(15.4vw); object-fit: cover; + aspect-ratio: 16 / 9; - @supports (aspect-ratio: 16 / 9) { - aspect-ratio: 16 / 9; + @supports not (aspect-ratio: 16 / 9) { + height: calc(15.4vw); } } diff --git a/src/components/sections/partners/hero/hero.module.scss b/src/components/sections/partners/hero/hero.module.scss index 0fd12bf..75e3d5f 100644 --- a/src/components/sections/partners/hero/hero.module.scss +++ b/src/components/sections/partners/hero/hero.module.scss @@ -58,10 +58,6 @@ display: flex; place-content: center; min-height: tovw(350px, 'mobile', 310px); - - img { - width: 115% !important; - } } display: none; @@ -80,7 +76,7 @@ @include respond-to('mobile') { display: flex; margin: tovw(50px, 'mobile', 100px) 0 tovw(40px, 'mobile', 50px) 0; - width: 185%; + width: 100%; mix-blend-mode: screen; place-self: center; mask-image: linear-gradient( diff --git a/src/components/sections/products/app/app.module.scss b/src/components/sections/products/app/app.module.scss index 0f0476c..e874009 100644 --- a/src/components/sections/products/app/app.module.scss +++ b/src/components/sections/products/app/app.module.scss @@ -6,7 +6,7 @@ height: unset; padding: 0; margin-bottom: 0; - padding-bottom: tovw(60px, 'mobile'); + padding-top: tovw(60px, 'mobile'); } display: flex; @@ -26,6 +26,8 @@ z-index: 2; div:nth-child(2) { + order: 1; + h2 { text-shadow: 0 0 tovw(20px, 'default', 20px) rgb(255 255 255 / 0.4); } @@ -51,6 +53,7 @@ @include respond-to('mobile') { width: 100%; min-height: tovw(190px, 'mobile', 340px); + order: 2; } position: relative; diff --git a/src/components/sections/products/hero/hero.module.scss b/src/components/sections/products/hero/hero.module.scss index dadcd15..9043c90 100644 --- a/src/components/sections/products/hero/hero.module.scss +++ b/src/components/sections/products/hero/hero.module.scss @@ -47,7 +47,7 @@ display: flex; margin: tovw(30px, 'mobile', 70px) 0 tovw(30px, 'mobile', 40px) tovw(16px, 'mobile', 20px); - width: 200%; + width: 100%; mix-blend-mode: screen; place-self: center; min-height: tovw(308px, 'mobile', 310px); diff --git a/src/components/sections/products/network/network.module.scss b/src/components/sections/products/network/network.module.scss index 0ff14ee..9ca84ae 100644 --- a/src/components/sections/products/network/network.module.scss +++ b/src/components/sections/products/network/network.module.scss @@ -4,6 +4,7 @@ @include respond-to('mobile') { padding: 0; padding-bottom: tovw(14px, 'mobile'); + padding-top: tovw(44px, 'mobile'); } position: relative;