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

/*START: NAVIGATION STYLES*/
/* header */
#header { 
    background: #2d2d2d;
    color: #fff;
    padding: 10px 50px;
}
#logo {
/*	margin: 10px;*/
/*	float: left;*/
	width: 150px;
	height: 38px;
	background: url(../image/logo_web.png) no-repeat center;
	display: block;
}
nav {
    float: right;
    margin: -35px 0 0;
}
nav ul {
    list-style: none;
}
nav li {
    display: inline-block;
    float: left;
    padding: 10px;
}
nav a {
    color: #fff;
    text-decoration: none;
}



/*START: GENERAL STYLES*/
* { /*resets margins and padding*/
   margin: 0; 
   padding: 0;
}
/*
div {
    border: 1px solid #999;
}
*/
body { 
   font-family: 'Montserrat', sans-serif;
}
.container { 
    width: 90%; 
    margin: 0 auto;
}
.titleBox {
    background: #2d2d2d;
    color: #fff;
}
.center {
    text-align: center;
}
.right {
    text-align: right;
}
.genPad {
    padding: 20px;
}
.red {
    color: red;
}
ul {
    margin-left: 50px;
}



/*START: TABLE STYLES*/
table, th, td {
    border: 1px solid #000;
    border-collapse: collapse;
    padding: 3px;
    width: 70%;
    margin: 0 auto;
}



/*START: BG STYLES*/
#background {
/*
    position: absolute;
    margin-top: -100px;
    width: 100%;
    height: auto;
*/
    background-image: url(../image/contactBg_web.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0 110px;
}



/*START: FORM STYLES*/
/* Style inputs, select elements and textareas */
input[type=text], input[type=email], input[type=tel], input[type=number], select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    resize: vertical;
    font-family: 'Montserrat', sans-serif;
}
input[type=number] {
    padding: 13px;
}
/* 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: 'Montserrat', sans-serif;
    width: 20%;
}
input[type=reset] {
    float: right;
}
textarea {
    height: 200px;
}
/* Floating column for labels: 25% width */
.col-50 {
    float: left;
    width: 50%;
    margin-top: 6px;
}
/* Floating column for inputs: 75% width */
.col-45 {
    float: left;
    width: 45%;
    margin-top: 6px;
}
/* Clear floats after the columns */
/*
.row:after 
{
    content: "";
    display: table;
    clear: both;
}
*/
.formBg
{
    background: rgb(255,255,255,.9);
    padding: 0 0 100px;
}
fieldset {
    border-style: none;
}



/*START: FOOTER STYLES*/
footer {
    padding: 90px 8px;
    background: #2d2d2d;
    color: #fff;
}



/*START: IPHONE LAYOUT STYLES*/
@media (max-width: 480px) {
    #header 
    { 
        padding: 10px 0;
    }
    .col-25, .col-75, input[type=submit], input[type=reset] {
    width: 100%;
/*    margin-top: 0;*/
    }
    .formBg {
        padding: 0 0 150px;
    }
    table {
        width: 100%;
    }
}



/*START: NARROW LAYOUT STYLES*/
@media (min-width: 481px) and (max-width: 766px) {
    .col-25, .col-75, input[type=submit], input[type=reset] {
    width: 100%;
/*    margin-top: 0;*/
    }
    .formBg {
        padding: 0 0 150px;
    }
    table {
        width: 100%;
    }
}



/*START: MEDIUM LAYOUT STYLES*/
@media (min-width: 767px) and (max-width: 979px) {

}



/*START: WIDE LAYOUT STYLES*/
@media (min-width: 980px) {

}














