@import url(https://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700);

body {
    font-family: 'Open Sans', 'Helvetica', 'Arial', sans-serif;
}

.hero {
    background: url("../img/homepage-hero1.jpg") no-repeat center center;
    background-size: cover;
    background-position: top center;
    min-height: 80vh;
    position: relative;
}
.hero:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(to bottom right, #307cb6, #002e5e);
    opacity: 0.4;
}
.hero .intro {
    padding: 3rem 0;
    text-align: center;
}


#tagline {
    background-color: #0067aa;
    text-align: center;
    min-height: 20vh;
    padding: 40px 10px;
}
#tagline h2 {
    position: relative;
    top: 30%;
    
    color: #FFF;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    font-weight: 300;
}


#rightbg {
    background-color: #dcdcdc;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -100;
    
    width: 0px; /* Width is set via JS function sidecolResize(); */
}


.brand {
    padding-top: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #dcdcdc;
}
.brand .columns {
    padding: 20px;
}
.brand img {
    padding: 20px;
}
.brand h2 {
    font-size: 1.4em;
    margin-bottom: 0;
    
    font-weight: 400;
    letter-spacing: 1px;
    color: #0067aa;
}
.brand a h2 {
    color: #0067aa;
}
.brand a p {
    color: #222;
}
.brand h3 {
    font-size: 2.3em;
    font-weight: 800;
    color: #0067aa;
}
.brand .contact p {
    padding-top: 1em;
    color: #0067aa;
}


.button {
    display: inline-block;
    min-height: 44px;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 20px;
    text-transform: uppercase;
    letter-spacing: 0px;
    
    transition: background-color 300ms ease-out;
    border-bottom: 6px solid #E5364F !important;
    color: #FFF;
    background-color: #FE6F71;
}

.button:hover {
    background-color: #E5364F !important;
}


.msgbox {
    margin: 10px 0;
    
    -moz-border-radius: 3px;
    -khtml-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    border-top-left-radius: 3px 3px;
    border-top-right-radius: 3px 3px;
    border-bottom-right-radius: 3px 3px;
    border-bottom-left-radius: 3px 3px;

    padding: 10px;
    width: 480px;
    max-width: 100%;
}
.error {
    border: 1px solid #C00;
    background-color: #FFEBE8;
}
.success {
    border: 1px solid #018d64;
    background-color: #00cc90;
}


@media only screen and (max-width: 40em) {
    .brand {
        text-align: center;
    }
}

@media only screen and (min-width: 40.063em) {
    .brand h2 {
        padding-top: 30px;
    }
    .brand h3 {
        color: #FFF;
        text-align: right;
    }
}