:root{
    --va-occ-blue: #0076c5;
    --va-occ-white: #fff;
    --va-occ-black: #000;
    --va-occ-grey: #F0F3F4;
    --va-occ-dark-grey: #81878D;
    --va-occ-header-height: 60px;
    --va-occ-header-height-mobile: 50px;
    --va-occ-letter-spacing: 1px;
    --va-occ-nav-font-weight: 300;
    --va-occ-font-family: "SourceSansPro", Helvetica, Arial, sans-serif;
}

body {
    font-family: var(--va-occ-font-family);
    margin: 0;
    padding: 0;
    background: var(--va-occ-grey);
    color: var(--va-occ-black);
}

header {
    background: var(--va-occ-white);
    color: var(--va-occ-black);
    padding: 0;
    text-align: center;
}

p {
    margin-bottom: 0.65rem;
}

header .logo {
    max-height: 49px;
    height: auto;
}

.hero {
    background: var(--va-occ-blue);
    color: var(--va-occ-white);
    
    text-align: center;
    min-width: 100%;
    min-height: 220px;
    background-image: url(hero_bg.png);
    margin-bottom: 10px;
    background-size: cover;
    font-family: var(--va-occ-font-family);
    color: var(--va-occ-white);
    font-size: 4vw;
    width: 75%;
    line-height: 5vw;
    font-weight: var(--va-occ-nav-font-weight);
    text-align: center;
}

.hero-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-content > .head {
    font-family: var(--va-occ-font-family);
    color: var(--va-occ-white);
    font-size: 4vw;
    width: 75%;
    line-height: 5vw;
    font-weight: var(--va-occ-nav-font-weight);
    text-align: center;
    flex-flow: wrap;
}

.hero-content > .subhead {
    font-family: var(--va-occ-font-family);
    color: var(--va-occ-white);
    font-size: 2vw;
    font-weight: var(--va-occ-nav-font-weight);
    text-align: center;
    flex-flow: wrap;
    width: 75%;
}

.notice {
    background: var(--va-occ-white);
    color: var(--va-occ-dark-grey);
    margin: 2rem auto;
    padding: 1rem 2rem;
    border-radius: 8px;
    max-width: 500px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    text-align: center;
}

.notice a {
    color: var(--va-occ-blue);
    text-decoration: underline;
}
@media only screen and (max-width: 600px) {

}

@media only screen and (max-width: 460px) {
    .hero-content > .head { 
       font-size: 8vw;
       line-height: 9vw;
       width: 95%;
    }
    .hero-content > .subhead { 
       font-size: 5vw;
    }
}

@media only screen and (max-width: 340px) {

}

@media only screen and (max-width: 300px) {
    .hero-content > .head{ 
		font-size: 28px;
        line-height: 32px;
    }
    .hero-content {
       min-height: 180px;
    }
    .hero-content > .head{ 
       font-size: 8vw;
       line-height: 8.5vw;
       width: 95%;
    }
    .hero-content > .subhead{ 
       font-size: 5vw;
    }
}