This is the default hero with just a title, hero's can also contain:
<section class="hero">
    <div class="wrapper">
        <div class="hero__content">
            <h1>We are <span class="is-grey">The Idea Bureau</span></h1>
        </div>
    </div>
</section>
The slim variation has reduced padding top and bottom.
<section class="hero hero--slim">
    <div class="wrapper">
        <div class="hero__content">
            <h1>We are <span class="is-grey">The Idea Bureau</span></h1>
        </div>
    </div>
</section>
This hero includes a paragraph and some buttons.
<section class="hero hero--slim">
    <div class="wrapper">
        <div class="hero__content">
            <h1>We are <span class="is-grey">The Idea Bureau</span></h1>
            <p>Want to find out more?</p>
            <a class="button">Our People</a>
            <a class="button button--ghost">Contact us</a>
        </div>
    </div>
</section>