body {
    font-family: 'Lato', sans-serif;
}

header {
    background: url('../images/header-background.jpg') no-repeat center center;
    -webkit-background-size: cover;
    background-size: cover;
    padding: 1.8% 0 7.2%;
}

.rowBreak {
    display: block;
}

.underline {
    text-decoration: underline;
}

strong {
    font-weight: 700;
}

#headerContent {
    margin-top: 56px;
    color: #FFFFFF;
}

#logoWrapper img {
    max-width: 256px;
    width: 100%;
}

#headerContent h1 {
    font-size: 65px;
    font-weight: 700;
    line-height: 1.27em;
}

#headerContent .subHeading {
    font-size: 34px;
    font-weight: 400;
    margin-top: 24px;
    line-height: 1.24em;
}

#textCol {
    float: left;
}

#contentSection {
    margin-top: 85px;
    margin-bottom: 30px;
}

#contentSection #textCol {
    color: #677171;
    width: 48%;
    font-size: 15px;
    line-height: 1.9em;
}

#contentSection .textBlock {
    margin-bottom: 27px;
}

#contentSection .textBlock h2 {
    color: #252a2a;
    font-size: 24px;
    margin-top: 0;
}

#contentSection .textBlock h3 {
    color: #252a2a;
    font-size: 17px;
    font-weight: 700;
    margin-top: 11px;
}

#formCol {
    width: 40%;
    float: right;
    margin-top: 5px;
}

.formWrapper {
    background: #ff9134;
    border-radius: 5px;
    width: 100%;
    margin-left: 20px;
    padding: 23px 30px 47px;
    position: relative;
}

form {
    color: #FFFFFF;
    text-align: center;
    font-size: 15px;
}

form .formTitle {
    font-size: 20px;
    font-weight: 700;
}

form .subHeading {
    margin: 7px 0 27px;
}

form .form-group {
    text-align: left;
    margin-bottom: 18px;
}

label {
    margin-bottom: 2px;
}

form .form-control {
    height: 40px;
    background: #ffbb79;
    border: none;
    border-radius: 2px;
}

form .submitBtn {
    background: #61c666;
    font-size: 20px;
    font-weight: 700;
    width: 100%;
    margin-top: 7px;
    padding: 12px 12px;
}

form .submitBtn:hover {
    background: #7cdc81;
    color: #FFFFFF;
    transition: background 2s ease-out;
    -moz-transition: background 2s ease-out;
    -webkit-transition: background 2s ease-out;
    -o-transition: background 2s ease-out;
}

form .privacyStmt {
    font-size: 14px;
    padding: 0 25px;
    margin-top: 25px;
}

#testimonialSection {
    text-align: center;
    margin: 90px 0 40px;
}

.testimonialBlock {
    background: url('../images/quoteIcon.png') no-repeat left top;
    width: 58%;
    display: inline-block;
    color: #616161;
    min-width: 546px;
}

#testimonialSection h3 {
    font-size: 24px;
    margin-top: 0;
    line-height: 1.4em;
    padding-left: 7px;
    font-style: italic;
    font-family: Georgia, "Times New Roman", Times, serif;
    margin-bottom: 15px;
}

#testimonialSection span.quoteIcon {
    height: 26px;
    width: 36px;
    display: inline-block;
}

#testimonialSection .personInfo, #testimonialSection .personBlock img {
    display: inline-block;
}

#testimonialSection .personInfo {
    text-align: left;
    vertical-align: middle;
}

#testimonialSection .personBlock img {
    margin-right: 25px;
}

#testimonialSection .personInfo .name {
    font-size: 15px;
}

#testimonialSection .personInfo .title {
    font-size: 15px;
}

footer {
    background: #201e1c;
    padding: 40px 0;
}

footer .footerLogo {
    width: 200px;
    display: inline-block;
}

footer .footerLogo img {
    width: 100%;
}

footer .copyright {
    float: right;
    font-size: 18px;
    color: #FFFFFF;
    margin-right: -19px;
}

.processingOverlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(1, 1, 1, 0.7);
    -webkit-animation: load 200ms linear;
    -moz-animation: load 200ms linear;
    animation: load 200ms linear;
}

@-moz-keyframes load {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes load {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes load {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.processingOverlay .processingBlock {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.processingBlock {
    font-size: 46px;
    color: #FFFFFF;
    text-shadow: 1px 1px 6px #000000;
}

.processingBlock span {
    display: inline-block;
    -webkit-animation: spin 4s linear infinite;
    -moz-animation: spin 4s linear infinite;
    animation: spin 4s linear infinite;
}

@-moz-keyframes spin {
    100% {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.processingBlock .text {
    font-size: 23px;
}

/* Responsive Styling */

@media only screen and (max-width: 992px) {

    header .container {
        padding: 10px 35px;
    }

    #headerContent {
        margin-top: 10px;
    }

    .formWrapper {
        margin-left: 0;
    }

    #contentSection {
        margin-top: 7%;
    }

    #testimonialSection {
        text-align: center;
        margin: 2% 0 7%;
    }
}

@media only screen and (max-width: 768px) {

    #headerContent h1 {
        font-size: 8vw;
    }

    #headerContent .subHeading {
        font-size: 4.7vw;
    }

    #contentSection #textCol, #contentSection #formCol {
        width: 100%;
        float: none;
    }

    #contentSection #formCol {
        margin-bottom: 35px;
    }

    #contentSection .textBlock:last-of-type {
        margin-bottom: 35px;
    }

    footer .copyright {
        margin-right: 0;
    }

    #headerContent {
        text-align: center;
    }
}

@media only screen and (max-width: 575px) {

    .testimonialBlock {
        max-width: 546px;
        width: 95%;
        min-width: 0;
    }

    #testimonialSection h3 {
        font-size: 4.1vw;
    }

    footer {
        text-align: center;
    }

    footer .copyright {
        margin-top: 15px;
        float: none;
    }

}

@media only screen and (max-width: 480px) {

    footer .copyright {
        font-size: 4.5vw;
    }

    #logoWrapper {
        text-align: center;
    }

    #testimonialSection {
        text-align: center;
    }

    #testimonialSection .personInfo {
        display: block;
        text-align: center;
    }

    #testimonialSection h3 {
        margin-bottom: 25px;
        padding-left: 10px;
        font-size: 19px;
    }

    .testimonialBlock {
        background-size: 6%;
    }
}

@media only screen and (min-width: 1200px) {
    .container {
        width: 985px;
    }
}