/*chaparral-pro kit includes 300,400,600 normal and 400 italic*/

h1 {
    font-family: "sunflower", sans-serif;
    font-weight: 800
}

h2 {
    font-family: "chaparral-pro", sans-serif;
    font-weight: 600;
}

p {
    font-family: "chaparral-pro", sans-serif;
    font-weight: 400
}

.chaplight {
    font-family: "chaparral-pro", sans-serif;
    font-weight: 300;
}

#header {
    display: flex;
    flex-wrap: wrap-reverse;
    justify-content: space-around;
    max-width: 960px;
    margin: 0 auto;
    border-bottom: 4px solid #837E7C;;
    color: #837E7C;
}

#header h1 {
    color: #726E6D;
}

#header_left {
    max-width: 400px;
    order: 1;
    text-align: center;
}

#header_right {
    order: 2;
}

#header_right img {
    /*width: 100%;*/
}

#content {
    max-width: 960px;
    padding: 0;
    margin: 0 auto;
    color: #837E7C;
}

#content h1 {
    font-size: 18pt;
    color: #726E6D;
    margin: 5px 0 15px 5px;
}

#content h2 {
    margin: 5px 0 5px 5px;
}

#content p {
    margin: 5px 0 10px 5px;
}

#content_about { /*single column usage, news on home page*/
    display: flex;
    flex-wrap: wrap-reverse;
    justify-content: space-around;
    max-width: 960px;
    margin: 0 auto;
}

#about_left,
#about_right {
    max-width: 480px;
}

#about_left {
    order: 1;
}

#about_right {
    order: 2;
}

#about_right img {
    /*width: 100%;*/
}

#content_news { /*single column usage, news on home page*/
    max-width: 480px;
    margin: 0 auto;
}

#contact_section_divider { /*shaded bar just above contact content*/
    text-align: center;
}

#contact_section_divider h2 {
    display: block;
    margin: 0;
    padding: 0.5rem;
    background-color: #837E7C;
    color: #fff;
}

.contact_row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.contact_left,
.contact_right {
    border-top: 2px solid #837E7C;
    width: 420px;
}

.contact_left {
    order: 1;
}

.contact_right {
    order: 2;
}
.contact_span {
    border-top: 2px solid #837E7C;
    text-align: center;
}
.contact_span h1,
.contact_span h2 {
    
    font-size:90%!important;
}

a.button { /*these are the email buttons*/
    color: #fff;
    padding: 5px 15px;
    background-color: #D7B878;
    border: 0;
    text-decoration: none;
    line-height: 2em;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

a.button:hover {
    text-decoration: none;
    color: #fff;
    background: #AF895A;
}

