@import url('https://fonts.googleapis.com/css?family=Cabin|Source+Sans+Pro:400,700&display=swap');

.header_text {
    color: #fff;
    font-family: 'Source Sans Pro', sans-serif;
    text-transform: uppercase;
    /* font-weight: 700; */
}

.separator {
    display: flex;
    align-items: center;
    justify-content: center;
}

.line {
    width: 100%;
    max-width: 8.4rem;
    height: .25rem;
    background-color: #fff;
    position: relative;
    animation: grow 2s forwards;
    animation-delay: .9s;
}

.line-right::before, .line-left::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: .6rem solid transparent;
    opacity: 0;
    animation: grow 1.5s forwards;
    animation-delay: 1.2s;
}

.line-right::before {
    border-right-color: #fff;
    right: 0;
}

.line-left::before {
    border-left-color: #fff;
    left: 0;
}

.asterisk {
    font-size: 1.2rem;
    color: #ffe6ad;
    margin: 0 1.6rem;
    animation: spin .5s forwards;
    animation-delay: .7s;
}

.headline-description h5 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 100;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    letter-spacing: 3px;
    margin-right: -3px;
}

@media screen and (min-width: 900px) {

    .header_text {
        /* font-size: 4.7rem; */
        letter-spacing: .8rem;
    }

    .line {
        max-width: 11.4rem;
    }
}