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

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



/*START: IPHONE LAYOUT STYLES*/
@media (max-width: 480px) {
    .titleBox1 {
        color: #fff;
        background: #F07830;
        margin-top: -6px;
   
    }
    .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;
    }
    .blackBg img {
        display: none;
    }
}



/*START: MEDIUM LAYOUT STYLES*/
@media (min-width: 767px) and (max-width: 979px) {
    #content {
        margin-top: 15px;
    }
    #secondaryOne {
        width: 40%;
        float: right;
        margin-right: 50px;
    }
    #secondaryTwo {
        width: 40%;
        margin-left: 50px;
    }
    #secondaryThree {
        width: 40%;
        float: right;
        margin-right: 50px;
    }
    #secondaryFour {
        width: 40%;
        margin-left: 50px;
    }
    .titleBox1 {
        margin-top: -150px;
        color: #fff;
    }
}



/*START: WIDE LAYOUT STYLES*/
@media (min-width: 980px) {
    #content {
        margin-top: 35px;
    }
    #secondaryOne {
        width: 40%;
        float: right;
        margin-right: 50px;
    }
    #secondaryTwo {
        width: 40%;
        margin-left: 50px;
    }
    #secondaryThree {
        width: 40%;
        float: right;
        margin-right: 50px;
    }
    #secondaryFour {
        width: 40%;
        margin-left: 50px;
    }
    .titleBox1 {
        margin-top: -170px;
        color: #fff;
    }
}














