diff --git a/src/components/navigation/menu-item/menu-item.scss b/src/components/navigation/menu-item/menu-item.scss
index 5edf9e4d7733da2375dfd1b1f92dfa124756e6a0..0788c05e1562184b57927d7d7eda1dcac69929ad 100644
--- a/src/components/navigation/menu-item/menu-item.scss
+++ b/src/components/navigation/menu-item/menu-item.scss
@@ -97,8 +97,8 @@
         @include font-size(24px, 28px);
         @include font-weight($bold);
         letter-spacing: -0.06px;
-        text-transform: uppercase;
         position: relative;
+        text-transform: uppercase;
 
         // Drill-down heading.
         &:not(.is-active):not(.is-active-trail) {
diff --git a/src/components/navigation/menu-level-container/menu-level-container.scss b/src/components/navigation/menu-level-container/menu-level-container.scss
index 005404a1471a1bcf134831e0fd59d764ca9dc87f..5e4245eb2f55eb6009793090373546b467de0e74 100644
--- a/src/components/navigation/menu-level-container/menu-level-container.scss
+++ b/src/components/navigation/menu-level-container/menu-level-container.scss
@@ -16,6 +16,22 @@
       transform: translateX(0);
       visibility: visible !important;
     }
+
+    &.hy-menu-level-container--level-1 {
+      padding-top: 8px;
+      position: relative;
+
+      &:before {
+        background-color: var(--brand-main-light);
+        content: '';
+        display: block;
+        height: 3px;
+        left: 12px;
+        position: absolute;
+        right: 12px;
+        top: 0;
+      }
+    }
   }
 
   &--desktop {