
/************************************
    hero
*************************************/
#page-container #hero {
    position: relative;
    padding: 0;
    float:left;
    width:100%;
    margin-bottom: 5px;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.hero-title-bar {
    float: left;
    width: 100%;
    margin-top: 38%;
    margin-bottom: 0;
    /*background: black;
    background: rgba(0, 0, 0, 0.5);*/
}

#page-container .hero-title-bar h1 {
    color: white;
    font-size: 34px;
    padding: 28px 0 28px 25px;
    margin: 0;
}

#page-container .hero-title-bar img {
    width: 144px;
    margin-top: -27px;
}

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

    #page-container .hero-title-bar h1 {
        font-size: 17px;
        padding-left: 30px;
    }

    #page-container .hero-title-bar img {
        width: 94px;
        margin-top: -17px;
        left: 30px;
    }

}

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

    #page-container .hero-title-bar h1 {
        font-size: 17px;
    }

    #page-container .hero-title-bar img {
        width: 94px;
        margin-top: -17px;
    }

}

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

    #page-container .hero-title-bar h1 {
        padding: 14px 0 14px 20px;
        font-size: 15px;
    }

    #page-container .hero-title-bar img {
        width: 60px;
        margin-top: -13px;
        left: 15px;
    }

}


/************************************
    End of hero
*************************************/


/************************************
    content boxes
*************************************/

.section-header {
    float:left;
    width: 100%;
    margin: 5px 0;
    background-color:#cacaca;
}

#page-container .section-header h2 {
    margin: 0px;
    color: #fff;
    padding: 10px 30px 10px 30px;
    font-size: 22px;
}


.section-content {
    float:left;
    width: 100%;
}

.section-content .content-box {
    float: left;
    width: 50%;
    margin: 5px 0;
    padding-right: 0;
    padding-left: 5px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

#page-container .content-box:last-child {
    float:left;
}

.section-content .content-box.odd{
    padding-right: 5px;
    padding-left: 0;
}

.section-content .content-box .content{
    float: left;
    width:100%;
    height: 155px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid #d8d8d8
}

#page-container .section-content .content-box .content .copy h3{
    margin: 0;
    color: #333;
    font-size: 17px;
    padding: 41px 0 10px 100px;
}

#page-container .section-content .content-box .content .copy p {
    color: #333;
    font-size: 12px;
    font-weight: 300;
    padding: 0 130px 0 100px;
}


.section-content .content-box .content .icon{
    position: absolute;
    top: 50%;
    left: 20px;
    margin-top: -33px;
}

.section-content .content-box .content .cta{
    position: absolute;
    bottom: 20px;
    right: 20px;
}

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

    .section-content .content-box .content{
        height: 258px;
    }

    #page-container .section-content .content-box .content .copy,
    .section-content .content-box .content .icon,
    .section-content .content-box .content .cta {
        position: relative;
        padding: 0;
        margin: 0;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        float: left;
        width: 100%;
        text-align: center
    }
    
    .section-content .content-box .content .icon, .section-content .content-box .content .cta{
        padding: 20px 0;
    }

    #page-container .section-content .content-box .content .copy h3{
        padding: 0 20px 10px;
    }

    #page-container .section-content .content-box .content .copy p{
        padding: 0 20px 0;
    }

}

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

    .section-content .content-box, .section-content .content-box.odd {
        float: left;
        width: 100%;
        padding: 0;
    }

    .section-content .content-box .content{
        height: auto;
    }

}

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

    #page-container .section-header h2 {
        padding-left: 20px;
        padding-right: 20px;
        font-size: 17px;
    }

}
/************************************
    End of content boxes
*************************************/