/*--------------- SECONDARY NAV ---------------*/
/*font and background color*/
.ctaNav {
    background: #37352C;
    color: #EAE9E2;
    padding: 10px 0;
    width: 100%;
    display: table;
    box-sizing: border-box;
}
/*content width*/ 
.ctaNav .blockContent {
    margin: 0 auto;
    max-width: 1200px; /*edit based on layout width, 100% if Stretch header & navigation to window edges is selected*/
    text-align: right;
}
.ctaNav .blockText {
    padding-right: 4%;
    padding-left: 4%;
}
/*link font color*/
.ctaNav a {
    color: #EAE9E2;

}
/*--------------- HOME ---------------*/
/*form header customizations*/
.customForm .blockInnerContent {
    background: rgba(255,255,255,.8); /*change background color here*/
    max-width: 500px;
    float: right;
}
.formText {
    padding: 40px 20px 0 20px;
}
@media only screen and (max-width: 768px) {
    .ctaNav li {
        text-align: center;
        list-style-type: none;
    }
    .customForm {
        padding-top: 4%;
        padding-bottom: 4%;
    }
}

@media only screen and (min-width: 768px) {
    .ctaNav li {
        display: inline-block;
        margin-left: 2.5em;
    }
}