/* Header */
header {
    padding: 1.6rem 0;
}
header .brand img {
    height: 48px;
    width: auto;
}
@media screen and (min-width:768px) {
    header .brand img {
        height: 64px;
        width: auto;
    }
}

@media screen and (min-width:1024px) {
    header .brand img {
        height: 72px;
        width: auto;
    }
}

@media screen and (min-width:1200px) {
    header .brand img {
        height: 80px;
        width: auto;
    }
}

/* Hero Banner */
.hero-banner {}
.hero-banner .services {
    margin: 4.8rem auto;
    max-width: 96.0rem;
}
.hero-banner h3 {
    font-family: var(--body-text-md);
}



/* About Us */
.about-us {
    position: relative;
    color: #f5f5f5;
    background: url(../images/bg.png) 0 0 repeat;
}
.about-us:before {
    content: "";
    position: absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    background: rgba(0, 0, 0, 0.2);
}
.about-us .container {
    position: relative;
    z-index: 2;
    max-width: 96.0rem;
}
.about-us h3 {
    margin: 0 0 2.4rem 0; 
    font-family: var(--body-text-md);
}

/* Contact Us */
.contact-us {}
.contact-us .container {
    position: relative;
    max-width: 96.0rem;
}
.contact-us h3 {
    margin: 0 0 2.4rem 0;
}
/**/
.contact-form {
    margin: 4.8rem auto 0 auto;
    padding: 3.2rem;
    max-width: 48.0rem;
    background: #f5f5f5;
}
.contact-form .form-group {
    margin: 0 0 2.4rem 0;
}
.contact-form .form-label {
    margin: 0 0 0.4rem 0;
    display: block;
    font-family: var(--heading-text);
    font-size: var(--font-size-xs);
    text-transform: uppercase;
    opacity: 0.3;
}
.contact-form .form-control {
    margin:0;
    padding: 0.8rem 1.2rem;
    width: 100%;
    border: none;
    border-bottom: 1px solid #333;
    font-size: var(--font-size-h5);
}


/* Footer */
footer {
    position: relative;
    padding: 1.6rem 0;
    color: #f5f5f5;
    background: url(../images/bg.png) 0 0 repeat;
}
footer:before {
    content: "";
    position: absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    background: rgba(0, 0, 0, 0.2);
}
footer .container {
    position: relative;
    z-index: 2;
}
footer .container .site-grid > div {
    text-align: center;
}

@media screen and (min-width:1024px) {
    footer .container .site-grid > div {
        text-align: left;
    }
    footer .container .site-grid > div:last-child {
        text-align: right;
    }
}
/**/
.thanks {
    height: calc(100vh - 112px - 62px);
}


@media screen and (min-width:1200px) {
}