/* Header
 * -------------------------------------------------- */
.kc-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
    text-align: center;
    width: auto;
    margin: 0 0.5rem 20px;
}

.kc-header-logo {
    margin-bottom: 1rem;
}

.kc-header-tagline h1 {
    font-family: "MuseoSans-500", Arial, Helvetica, sans-serif;
    font-size: 1.2rem;
    color: #00a7e0;
    margin: 0 0 5px;
}

.kc-header-tagline p {
    font-size: 14px;
    margin: 0;
}

.kc-header-tagline a {
    font-size: 14px;
    color: #3a3a3a;
}

.kc-header-tagline a:hover,
.kc-header-tagline a:focus,
.kc-header-tagline a:active {
    color: #00a7e0;
}

@media (min-width: 768px) {
    .kc-header {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        text-align: left;
    }

    .kc-header-logo {
        margin-bottom: 0;
    }

    .kc-header-tagline {
        text-align: right;
    }
}