Get Help - In Context

PREVIEW
<!-- Light Version -->
<div class="get-help">
    <div class="get-help__columns">
        <h3 class="get-help__title">Didn't find what you're looking for or need more help?</h3>
    </div>
    <div class="get-help__columns">
        <div class="get-help__column">
            <div class="get-help__content">
                <p>
                    <b>US employees, get help through AskHR</b>
                </p>
                <p>Get in touch with an HR Representative for help navigating:</p>
                <ul>
                    <li>HR programs, policies and procedures</li>
                    <li>Payroll and time reporting</li>
                    <li>Navigating health and welfare benefits</li>
                    <li>General HR inquiries (we’ll get you where you need to go)</li>
                </ul>
                <p>
                    <a href="#" class="btn btn-link">Find help&nbsp;<i class="fa fa-long-arrow-right"></i> </a>
                </p>
            </div>
        </div>

        <div class="get-help__column">
            <div class="get-help__content">
                <p>
                    <b>International employees, find your best help path</b>
                </p>
                <p>Find contacts for your country and org for help related to:</p>
                <ul>
                    <li>Payroll and benefits</li>
                    <li>General HR enquiries</li>
                    <li>Performance management and talent acquisition (for managers)</li>
                </ul>
                <p>
                    <a href="#" class="btn btn-link">Find your help contact&nbsp;<i class="fa fa-long-arrow-right"></i> </a>
                </p>
            </div>
        </div>
    </div>
</div>

<!-- Dark Version (Containing element for demo - do not include) -->
<div style="background-color: #000a3c; padding: 0 1.2rem">
    <div class="get-help get-help--dark">
        <div class="get-help__columns">
            <h3 class="get-help__title">Didn't find what you're looking for or need more help?</h3>
        </div>
        <div class="get-help__columns">
            <div class="get-help__column">
                <div class="get-help__content">
                    <p>
                        <b>US employees, get help through AskHR</b>
                    </p>
                    <p>Get in touch with an HR Representative for help navigating:</p>
                    <ul>
                        <li>HR programs, policies and procedures</li>
                        <li>Payroll and time reporting</li>
                        <li>Navigating health and welfare benefits</li>
                        <li>General HR inquiries (we’ll get you where you need to go)</li>
                    </ul>
                    <p>
                        <a href="#" class="btn btn-link">Find help&nbsp;<i class="fa fa-long-arrow-right"></i> </a>
                    </p>
                </div>
            </div>

            <div class="get-help__column">
                <div class="get-help__content">
                    <p>
                        <b>International employees, find your best help path</b>
                    </p>
                    <p>Find contacts for your country and org for help related to:</p>
                    <ul>
                        <li>Payroll and benefits</li>
                        <li>General HR enquiries</li>
                        <li>Performance management and talent acquisition (for managers)</li>
                    </ul>
                    <p>
                        <a href="#" class="btn btn-link">Find your help contact&nbsp;<i class="fa fa-long-arrow-right"></i> </a>
                    </p>
                </div>
            </div>
        </div>
    </div>
</div>
.get-help {
  padding: 2.4rem 0;

  &.get-help--dark {
    color: $color-base-white;
  }
}

.get-help__title {
  @include typeTitle(true);
  text-align: center;
  margin-bottom: 2.4rem;
}

.get-help__columns {
  display: flex;
  flex-direction: column;
  justify-content: center;

  @media (min-width: $breakpoint-desktop) {
    flex-direction: row;
  }
}

.get-help__column {
  width: 100%;
  max-width: 32rem;
  margin: 0 2.4rem;
}

.get-help__content {
  margin-bottom: 2.4rem;

  .get-help--dark & {
    a,
    .text-primary {
      color: $color-blue-light;
    }

    a:hover {
      color: $color-blue-medium;
    }
  }
}
URL copied to clipboard!