/* resets */
body {
    margin: 0px;
    padding: 0px;
    font-family: "BentonSans", Helvetica, Arial;
}

/* main */
#pencil_banner {
    background: #006fcf;
    width: 100%;
    z-index: 10;
    overflow: hidden;
    padding: 12px 0;
}

.pencil_container {
    max-width: 980px;
    margin: 0 auto;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

.message-wrap {
    display: flex;
    align-items: center;
}

.message {
    font-size: 21px;
    color: #fff;
    margin-right: 30px;
    margin-left: 30px;
    text-align: right;
}

.cta a {
    background: #fff;
    font-size: 18px;
    color: #006fcf;
    text-decoration: none;
    padding: 10px 22px;
    white-space: nowrap;
    display: inline-block;
}

@media only screen and (max-width: 991px) {
    .banner-content {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media only screen and (max-width: 767px) {
    #pencil_banner {
        position: fixed;
        bottom: 0;
        top: auto;
    }

    .banner-content {
        display: block;
    }

    .my-credit-logo {
        text-align: center;
        margin-bottom: 10px;
    }

    .message-wrap {
        justify-content: center;
    }

    .message {
        margin-left: 0;
        text-align: left;
        font-size: 18px;
    }

    .cta a {
        font-size: 16px;
    }
}
