/**
 * @file
 * Visual styles for Bartik's page-title component.
 */

.page-title {
    background: none;
    position: relative;
    margin: 0 0 15px;
    padding-bottom: 15px;
}

.page-title::after {
    content: "";
    width: 100%;
    height: 3px;
    /* yellow */
    background-color: #fab31b;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.page-title > span {
    display: inline-block;
    position: relative;
    z-index: 9;
    color: #002e5b;
    font-family: 'Exo', sans-serif;
    font-size: 40px;
    font-weight: bold;
    line-height: 1em;
    text-transform: uppercase;
}
