<style>
    .timer-block {
        text-align: center;
        max-width: 33.333%;
        width: 100%;
        margin: 0 5px;
        background-color: white;
        border: 1px solid #3E3E42;
        padding: 10px 0;
        font-size: 34px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .timer-countdown {
        display: flex;
        width: auto;
        margin: 0 auto;
    }

    .timer-block span {
        font-size: 14px;
        padding-top: 3px;
        color: #3e3e3e;
        font-weight: 500;
    }

    .timer-block div {
        line-height: 0.8em;
        font-weight: 500;
        color: #0A3055
    }
    .timer-days {
        margin-left: 0;
    }
    .timer-seconds {
        margin-right: 0;
    }
</style>

<div class="hero-banner-info {{#if style.className.length}}{{ style.className }}{{/if}}">
    <div class="hero-banner-info__inner{{#if style.className.length}} has-bg{{/if}}">
    {{#each sections}}
        <section class="hero-banner-info__section">
            {{{ . }}}
        </section>
    {{/each}}
    {{#if countdown-timer}}
        <div class="timer-countdown pt-2" data-date="Feb 26, 2019 00:00:02">
            <div class="timer-days timer-block">
                <div class="days-digit"></div>
                <span>DAYS</span>
            </div>

            <div class="timer-hours timer-block">
                <div class="hours-digit"></div>
                <span>HOURS</span>
            </div>

            <div class="timer-minutes timer-block">
                <div class="minutes-digit"></div>
                <span>MINS</span>
            </div>

            <div class="timer-seconds timer-block">
                <div class="seconds-digit"></div>
                <span>SECS</span>
            </div>
        </div>
    {{/if}}
    </div>
    <div class="hero-banner__button">
        <a href="{{ cta.url }}" class="btn btn-primary hero-banner-info__action" tag-class="{{ cta.tag-class }}">
            {{ cta.text }}
        </a>
    </div>
</div>