/* ---------------------------
SCREEN STYLE CSS - RWD
--------------------------- */

/*START: GENERAL STYLES*/
#secondaryOne {
    width: 90%;
    margin: 0 auto;
}
.contentBg {
    background: rgb(248,240,227,1);
}
.contentSpacing  {
    padding-top: 100px;
    padding-bottom: 100px;
}
.titleBox2 {
    padding-bottom: 90px;
}
.titleBox1 h1 {
    text-shadow: 0 0 3px #000;
    color: #F8F0E3;
}
.titleBox1 h3 {
    text-shadow: 0 0 3px #000;
}



/*START: FORM STYLES*/
/* Style inputs, select elements and textareas */
input[type=text], input[type=email], input[type=tel], select, textarea
{
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    resize: vertical;
    font-family: 'Jost', sans-serif;
}
/* Style the label to display next to the inputs */
label 
{
    padding: 12px 12px 12px 0;
    display: inline-block;
}
/* Style the submit button */
input[type=submit], input[type=reset]
{
    background-color: #fe4900;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
/*    float: left;*/
    margin-top: 20px;
    font-family: 'Jost', sans-serif;
    width: 20%;
}
input[type=submit]
{
    float: right;
}
textarea
{
    height: 200px;
}
/* Floating column for labels: 25% width */
.col-25 
{
    float: left;
    width: 25%;
    margin-top: 6px;
}
/* Floating column for inputs: 75% width */
.col-75 
{
    float: left;
    width: 70%;
    margin-top: 6px;
}
/* Clear floats after the columns */
/*
.row:after 
{
    content: "";
    display: table;
    clear: both;
}
*/
.formBg
{
    background: rgb(255,255,255,.9);
}
fieldset
{
    border-style: none;
}



/*START: IPHONE LAYOUT STYLES*/
@media (max-width: 480px) {
    .titleBox1 {
        color: #fff;
        background: #F07830;
        margin-top: -6px;
   
    }
    .col-25, .col-75, input[type=submit], input[type=reset]
    {
    width: 100%;
/*    margin-top: 0;*/
    }
    .formBg
    {
        padding: 0 0 100px;
    }
    .blackBg img {
        display: none;
    }
}



/*START: NARROW LAYOUT STYLES*/
@media (min-width: 481px) and (max-width: 766px) {
/*
    #content {
        margin-top: 27px;
    }
*/
    .titleBox1 {
        color: #fff;
        background: #F07830;
    }
    .col-25, .col-75, input[type=submit], input[type=reset]
    {
    width: 100%;
/*    margin-top: 0;*/
    }
    .formBg
    {
        padding: 0 0 100px;
    }
    .blackBg img {
        display: none;
    }
}



/*START: MEDIUM LAYOUT STYLES*/
@media (min-width: 767px) and (max-width: 979px) {
    #content {
        margin-top: 15px;
    }
    .titleBox1 {
        margin-top: -150px;
        color: #fff;
    }
}



/*START: WIDE LAYOUT STYLES*/
@media (min-width: 980px) {
    #content {
        margin-top: 35px;
    }
    .titleBox1 {
        margin-top: -170px;
        color: #fff;
    }
}














