diff --git a/src/components.d.ts b/src/components.d.ts
index ac648e7961b1cd2d19c102e7520fbc503442a47a..b0bcc32f5542f29c43d840ed8569fecbc165c7c1 100644
--- a/src/components.d.ts
+++ b/src/components.d.ts
@@ -67,6 +67,7 @@ export namespace Components {
     variant: 'primary' | 'warn' | 'success' | 'disabled';
   }
   interface HyBanner {
+    headerstyle: string;
     scLabel?: string;
     textDescription: string;
     textTitle?: string;
@@ -183,6 +184,7 @@ export namespace Components {
     variant: ButtonVariants;
   }
   interface HyCtaButton {
+    headerstyle: string;
     isExternal: boolean;
     linkContent: string;
     scLabel?: string;
@@ -922,6 +924,7 @@ declare namespace LocalJSX {
     variant?: 'primary' | 'warn' | 'success' | 'disabled';
   }
   interface HyBanner {
+    headerstyle?: string;
     scLabel?: string;
     textDescription?: string;
     textTitle?: string;
@@ -1038,6 +1041,7 @@ declare namespace LocalJSX {
     variant?: ButtonVariants;
   }
   interface HyCtaButton {
+    headerstyle?: string;
     isExternal?: boolean;
     linkContent?: string;
     scLabel?: string;
diff --git a/src/components/cta-button/cta-button.scss b/src/components/cta-button/cta-button.scss
index 317e7c29a9e1941b28eb268acee0c8ed25077b37..8e12b0b104c9982e1d910c6a17115122a0eaf6c0 100644
--- a/src/components/cta-button/cta-button.scss
+++ b/src/components/cta-button/cta-button.scss
@@ -24,31 +24,115 @@
     justify-content: center;
     height: 100%;
     max-width: 278px;
-    width: 278px;
+
+    padding: 14px 12px;
+    @include breakpoint($narrow) {
+      padding: 15px 16px;
+    }
+    @include breakpoint($extrawide) {
+      // with sidebar on page
+      padding: 15px 16px;
+    }
+    @include breakpoint($overwide) {
+      // with sidebar on page
+      padding: 17px 16px;
+    }
 
     .text {
+      @include font-size(16px, 16px); //button small
       color: var(--grayscale-white);
-      font-size: 18px;
-      letter-spacing: -0.6px;
-      line-height: 20px;
-      margin: 18px 0 18px 14px;
+
+      @include breakpoint($narrow) {
+        @include font-size(18px, 18px); //button medium
+      }
+      @include breakpoint($extrawide) {
+        // with sidebar on page
+        @include font-size(18px, 18px); //button medium
+      }
+      @include breakpoint($overwide) {
+        // with sidebar on page
+        @include font-size(20px, 20px); //button large
+      }
     }
+
     .link-icon {
-      margin-left: 12px;
+      margin-left: 8px; //button small
+
+      @include breakpoint($narrow) {
+        margin-left: 10px; //button medium
+      }
+      @include breakpoint($extrawide) {
+        margin-left: 10px; //button medium
+      }
+      @include breakpoint($overwide) {
+        margin-left: 12px; //button large
+      }
 
       svg {
         background-color: var(--brand-main-light);
         fill: var(--grayscale-white);
-        padding: 15.91px 16px 16.09px 0;
+        height: 16px;
+        width: 16px;
+
+        @include breakpoint($narrow) {
+          //button medium
+          height: 18px;
+          width: 18px;
+        }
+        @include breakpoint($extrawide) {
+          //button medium
+          height: 18px;
+          width: 18px;
+        }
+        @include breakpoint($overwide) {
+          //button large
+          height: 22px;
+          width: 22px;
+        }
       }
     }
   }
 
   &.blue-background {
-    border: 4px solid var(--grayscale-white);
+    border: 3px solid var(--grayscale-white);
+    @include breakpoint($overwide) {
+      border: 4px solid var(--grayscale-white);
+    }
   }
 
   &.white-background {
     border: none;
   }
 }
+
+.hy-cta-button.large {
+  @include breakpoint($extrawide) {
+    padding: 17px 16px;
+  }
+
+  .text {
+    @include breakpoint($extrawide) {
+      @include font-size(20px, 20px); //button large
+    }
+  }
+
+  .link-icon {
+    @include breakpoint($extrawide) {
+      margin-left: 12px; //button large
+    }
+
+    svg {
+      @include breakpoint($extrawide) {
+        //button large
+        height: 22px;
+        width: 22px;
+      }
+    }
+  }
+
+  &.blue-background {
+    @include breakpoint($extrawide) {
+      border: 4px solid var(--grayscale-white);
+    }
+  }
+}
diff --git a/src/components/cta-button/cta-button.tsx b/src/components/cta-button/cta-button.tsx
index e73564a76bade2de9c42f8db3c5bf4faf49388be..89a6eed38ec0066796ef33b6a599e78ae1755bc8 100644
--- a/src/components/cta-button/cta-button.tsx
+++ b/src/components/cta-button/cta-button.tsx
@@ -1,10 +1,10 @@
-import {Component, ComponentInterface, Prop, h} from '@stencil/core';
+import {Component, ComponentInterface, Element, Prop, h} from '@stencil/core';
 import {CtaLinkButtonVariants} from '../../utils/utils';
 
 @Component({
   tag: 'hy-cta-button',
   styleUrl: 'cta-button.scss',
-  shadow: true
+  shadow: true,
 })
 export class CtaButton implements ComponentInterface {
   @Prop() variant: CtaLinkButtonVariants = CtaLinkButtonVariants.onBlueBkgd;
@@ -12,9 +12,20 @@ export class CtaButton implements ComponentInterface {
   @Prop() url?: string;
   @Prop() scLabel?: string;
   @Prop() isExternal: boolean = false;
+  @Prop() headerstyle: string = 'common';
+  @Element() el: HTMLElement;
+
+  componentDidLoad() {
+    let hyMainDiv = this.el.closest('.hy-main');
+    if (hyMainDiv) {
+      if (!hyMainDiv.classList.contains('with-sidebar')) {
+        this.headerstyle = 'large';
+      }
+    }
+  }
 
   render() {
-    const classAttributes = ['hy-cta-button', this.variant].join(' ');
+    const classAttributes = ['hy-cta-button', this.variant, this.headerstyle].join(' ');
 
     const containerClassAttributes = ['hy-cta-button-container'].join(' ');
 
diff --git a/src/components/cta-button/readme.md b/src/components/cta-button/readme.md
index 906059b95632927aaa237a2020e1e31847d3cb30..fcf2aa95391fc52c9a31d9eb2da0165986cc0ea9 100644
--- a/src/components/cta-button/readme.md
+++ b/src/components/cta-button/readme.md
@@ -6,6 +6,7 @@
 
 | Property      | Attribute      | Description | Type                                                                                                     | Default                            |
 | ------------- | -------------- | ----------- | -------------------------------------------------------------------------------------------------------- | ---------------------------------- |
+| `headerstyle` | `headerstyle`  |             | `string`                                                                                                 | `'common'`                         |
 | `isExternal`  | `is-external`  |             | `boolean`                                                                                                | `false`                            |
 | `linkContent` | `link-content` |             | `string`                                                                                                 | `''`                               |
 | `scLabel`     | `sc-label`     |             | `string`                                                                                                 | `undefined`                        |
diff --git a/src/components/hy-banner/hy-banner.scss b/src/components/hy-banner/hy-banner.scss
index 2b74bef4ad0e84f6725bfd8e0b53dc6bbc17b402..2798de351298512770a8c0d50739627cda30a30b 100644
--- a/src/components/hy-banner/hy-banner.scss
+++ b/src/components/hy-banner/hy-banner.scss
@@ -6,50 +6,48 @@
   background-color: var(--brand-main-light);
   padding: 28px 0 24px 0;
 
-  // >480px
   @include breakpoint($narrow) {
     padding: 40px 0 32px 0;
   }
-
-  // >960px
   @include breakpoint($wide) {
     padding: 48px 0 40px 0;
   }
-
-  // >1200px
   @include breakpoint($extrawide) {
-    padding: 64px 0 48px 0;
+    padding: 48px 0 40px 0;
+  }
+  @include breakpoint($overwide) {
+    //padding: 64px 0 48px 0;
+    padding: 64px 32px 48px 32px;
   }
 
   &__info-container {
     &__title {
+      @include font-size(24px, 24px);
       color: var(--grayscale-white);
       font-family: var(--main-font-family);
-      font-size: 24px;
       font-weight: 600;
       letter-spacing: -0.8px;
-      line-height: 24px;
       margin-bottom: 16px;
       text-transform: uppercase;
 
       @include breakpoint($narrow) {
-        font-size: 32px;
+        @include font-size(32px, 32px);
         letter-spacing: -1.07px;
-        line-height: 32px;
         margin-bottom: 24px;
+        max-width: 92%;
       }
 
       @include breakpoint($extrawide) {
-        font-size: 36px;
-        letter-spacing: -1.2px;
-        line-height: 36px;
+        @include font-size(32px, 32px);
+        letter-spacing: -1.07px;
+        margin-bottom: 24px;
+        max-width: 92%;
       }
 
       @include breakpoint($overwide) {
-        font-size: 40px;
-        letter-spacing: -1.33px;
-        line-height: 40px;
-        margin-bottom: 32px;
+        @include font-size(36px, 36px);
+        letter-spacing: -1.2px;
+        max-width: 83%;
       }
     }
 
@@ -63,24 +61,55 @@
       margin-bottom: 24px;
 
       @include breakpoint($narrow) {
-        font-size: 16px;
+        @include font-size(16px, 24px);
         letter-spacing: -0.08px;
-        line-height: 24px;
         margin-bottom: 28px;
+        max-width: 92%;
       }
 
       @include breakpoint($wide) {
         margin-bottom: 32px;
       }
 
-      @include breakpoint($extrawide) {
-        font-size: 18px;
+      @include breakpoint($overwide) {
+        @include font-size(18px, 24px);
         letter-spacing: -0.09px;
-        line-height: 24px;
         margin-bottom: 36px;
+        max-width: 83%;
       }
+    }
+  }
+}
 
-      @include breakpoint($overwide) {
+// Big screen, no sidebar
+.hy-banner.large {
+  @include breakpoint($extrawide) {
+    padding: 64px 0 48px 0;
+
+    &__info-container {
+      &__title {
+        @include font-size(36px, 36px);
+        letter-spacing: -1.2px;
+        max-width: 83%;
+      }
+      &__description {
+        @include font-size(18px, 24px);
+        letter-spacing: -0.09px;
+        margin-bottom: 36px;
+        max-width: 83%;
+      }
+    }
+  }
+  @include breakpoint($overwide) {
+    padding: 64px 0 48px 0;
+    &__info-container {
+      &__title {
+        @include font-size(40px, 40px);
+        letter-spacing: -1.33px;
+        margin-bottom: 32px;
+        max-width: 83%; //10col
+      }
+      &__description {
         margin-bottom: 44px;
       }
     }
diff --git a/src/components/hy-banner/hy-banner.tsx b/src/components/hy-banner/hy-banner.tsx
index 2ea08b05e848a5c639f54391ef739219bf93a249..a7ae872bb2fcdcac38345b470c6fef30c94c799c 100644
--- a/src/components/hy-banner/hy-banner.tsx
+++ b/src/components/hy-banner/hy-banner.tsx
@@ -1,4 +1,4 @@
-import {Component, Prop, h, Host} from '@stencil/core';
+import {Component, Element, Prop, h, Host} from '@stencil/core';
 import {CtaLinkButtonVariants} from '../../utils/utils';
 
 @Component({
@@ -12,15 +12,27 @@ export class HyBanner {
   @Prop() url?: string;
   @Prop() scLabel?: string;
   @Prop() urlTitle?: string;
+  @Prop() headerstyle: string = 'common';
+  @Element() el: HTMLElement;
+
+  componentDidLoad() {
+    let hyMainDiv = this.el.closest('.hy-main');
+    if (hyMainDiv) {
+      if (!hyMainDiv.classList.contains('with-sidebar')) {
+        this.headerstyle = 'large';
+      }
+    }
+  }
 
   render() {
+    const hyBannerClass = ['hy-banner', this.headerstyle].join(' ');
     const hyBannerWrapperClass = ['hy-banner__info-container'].join(' ');
     const variant = CtaLinkButtonVariants.onBlueBkgd;
 
     return (
       <Host>
         <hy-box pt="4" />
-        <div class="hy-banner">
+        <div class={hyBannerClass}>
           <hy-main-content-wrapper>
             <div class={hyBannerWrapperClass}>
               <div class="hy-banner__info-container__title">{this.textTitle}</div>
diff --git a/src/components/hy-banner/readme.md b/src/components/hy-banner/readme.md
index 1f7b5c1ecfa910e3903f2d2537db82df75106e70..ca6a88240d0d4b2349b5aecf53998da0a6de3713 100644
--- a/src/components/hy-banner/readme.md
+++ b/src/components/hy-banner/readme.md
@@ -6,6 +6,7 @@
 
 | Property          | Attribute          | Description | Type     | Default     |
 | ----------------- | ------------------ | ----------- | -------- | ----------- |
+| `headerstyle`     | `headerstyle`      |             | `string` | `'common'`  |
 | `scLabel`         | `sc-label`         |             | `string` | `undefined` |
 | `textDescription` | `text-description` |             | `string` | `null`      |
 | `textTitle`       | `text-title`       |             | `string` | `undefined` |