diff --git a/src/styles/contacts.scss b/src/styles/contacts.scss index 8c5233c3b7..26f405355d 100644 --- a/src/styles/contacts.scss +++ b/src/styles/contacts.scss @@ -30,6 +30,10 @@ font-style: normal; font-weight: 600; line-height: 150%; /* 36px */ + + &:hover { + color: #144ed4; + } } } @@ -54,6 +58,10 @@ font-style: normal; font-weight: 600; line-height: 150%; + + &:hover { + color: #144ed4; + } } } diff --git a/src/styles/footer.scss b/src/styles/footer.scss index 839a390e02..821003869d 100644 --- a/src/styles/footer.scss +++ b/src/styles/footer.scss @@ -14,8 +14,4 @@ flex-direction: column; } } - - // &__icons { - // display: flex; - // } } diff --git a/src/styles/form.scss b/src/styles/form.scss index 76751012b5..759f5765bf 100644 --- a/src/styles/form.scss +++ b/src/styles/form.scss @@ -67,6 +67,11 @@ font-style: normal; font-weight: 600; line-height: normal; + border-width: 0; + + &:hover { + background: #08266d; + } } } diff --git a/src/styles/menu.scss b/src/styles/menu.scss index 7f20a528a6..ff60f49f98 100644 --- a/src/styles/menu.scss +++ b/src/styles/menu.scss @@ -60,6 +60,10 @@ text-transform: uppercase; color: #fff; + &:hover { + color: #2060f6; + } + @include onDesktop() { display: inline-block; } diff --git a/src/styles/mobileMenu.scss b/src/styles/mobileMenu.scss index 2bede67b0e..497dc84957 100644 --- a/src/styles/mobileMenu.scss +++ b/src/styles/mobileMenu.scss @@ -4,7 +4,8 @@ &__icons { display: flex; - justify-content: space-between; + gap: 35px; + // justify-content: space-between; } &__list { diff --git a/src/styles/ourExpertise.scss b/src/styles/ourExpertise.scss index a03a195558..c8008f3bc6 100644 --- a/src/styles/ourExpertise.scss +++ b/src/styles/ourExpertise.scss @@ -45,7 +45,7 @@ font-style: normal; font-weight: 600; line-height: 140%; /* 28px */ - max-width: 264px; + margin: 0; } &__text { diff --git a/src/styles/services.scss b/src/styles/services.scss index 5d4260e489..852716c204 100644 --- a/src/styles/services.scss +++ b/src/styles/services.scss @@ -84,6 +84,7 @@ } &__description { + margin-top: 26px; &__item { color: #6c788b; font-family: "Open Sans", sans-serif; @@ -95,6 +96,7 @@ } &__learn_more { + margin-top: 40px; display: flex; align-items: center; gap: 15px; @@ -123,6 +125,10 @@ font-style: normal; font-weight: 600; line-height: normal; + + &:hover { + color: #2060f6; + } } } } diff --git a/src/styles/strategicAgency.scss b/src/styles/strategicAgency.scss index 6b47620d76..348f90f0cb 100644 --- a/src/styles/strategicAgency.scss +++ b/src/styles/strategicAgency.scss @@ -64,6 +64,11 @@ border-radius: 8px; background: #2060f6; cursor: pointer; + border-width: 0; + + &:hover { + background: #08266d; + } @include onTablet () { // margin-bottom: 48px; diff --git a/src/styles/vision.scss b/src/styles/vision.scss index 50c7000502..7be1a350ba 100644 --- a/src/styles/vision.scss +++ b/src/styles/vision.scss @@ -47,5 +47,10 @@ line-height: normal; margin: 0 auto; cursor: pointer; + border-width: 0; + + &:hover { + background: #08266d; + } } }