<style>
    .hero-banner {
        position: relative;
        height: 400px;
        overflow: hidden;
        max-width: 1397px;
        margin: 0 auto;
    }

    .hero-banner__image {
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%);
        z-index: -1;
    }

    .hero-banner .container {
        height: 100%;
    }

    .hero-banner-info {
        max-width: 370px;
        height: 100%;
        background-color: rgba(65,65,65,.8);
        text-align: center;
        color: #fff;
        padding: 15px 30px;
        position: absolute;
        top: 0;
        left: 10%;
        margin: 0 auto;
    }

    .is-center {
        top: 0;
        right: 0;
        left: 0;
    }

    .hero-banner-info__inner {
        font-size: 18px;
        font-weight: 300;
        margin-bottom: 20px;
        padding: 10px 24px;
    }

    .hero-banner__inner a {
        display: inline-block;
        width: 100%;
        height: 400px;
    }

    .hero-banner .container {
        position: absolute;
        top: 0;
        left: 50%;
        margin-left: -570px;
    }

    .hero-banner-info__inner.has-bg {
        padding: 10px 30px;
    }

    .hero-banner-info__action {
        padding-top: 11px;
        padding-bottom: 11px;
        font-size: 1rem;
        line-height: 1.5;
        width: 100%;
    }

    .hero-banner-info__section {
        font-size: 18px;
        font-weight: 300;
        line-height: 1.2;
    }

    .hero-banner-info__section:not(:last-of-type)::after {
        content: '';
        height: 1px;
        background-color: #ccc;
        width: 100%;
        display: block;
        margin: 20px 0 10px 0;
    }

    .is-green .hero-banner-info__inner {
        background-color: #205C56;
    }

    .is-black .hero-banner-info__inner {
        background-color: #000000;
    }

    .is-red .hero-banner-info__inner {
        background-color: #cf000f;
    }

    .hero-banner-info__large {
        font-size: 24px;
    }

    .hero-banner-info__medium {
        font-size: 22px;
        line-height: 1.5;
    }

    .hero-banner-info__highlight {
        font-weight: 500;
    }

    .hero-banner-info__large .hero-banner-info__highlight {
        font-size: 35px;
    }

    .hero-banner-info__large .hero-banner-info__highlight span::after,
    .hero-banner-info strong::after {
        content: '';
        display: block;
        padding-bottom: 10px;
    }

    .hero-banner-info__small {
        font-size: 14px;
        font-weight: 100;
        margin-top: 15px;
        display: block;
    }

    @media screen and (max-width: 576px) {
        .hero-banner {
            height: auto;
        }

        .hero-banner .container {
            width: 100%;
            padding: 0;
            position: relative;
            top: 0;
            left: 0;
            margin-left: 0;
        }

        .hero-banner-info {
            width: 100%;
            max-width: 100%;
            background-color: rgba(62, 62, 62, 0.7);
            left: 0;
        }

        .hero-banner__inner {
            height: 400px;
        }

        .hero-banner__inner a {
            display: block;
            height: inherit;
            width: inherit;
            overflow: hidden;
        }

        .hero-banner__image {
            position: relative;
            left: 0;
        }
    }

    .rtfk__banner .hero-banner-info__inner {
        padding: 0;
    }

    .all-centered {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .yellow-background {
        display: flex;
        justify-content: center;
        padding: 10px;
        background-color: #F7CA18;
        color: #3e3e3e;
        font-weight: 700;
        font-size: 17px;
    }
</style>

<div class="hero-banner {{modifier}}">
    {{> hero-banner-placeholder-image image }}
    {{> hero-banner-placeholder-info info }}
</div>