body{
	background: url('../images/backgrounds/contact.jpg');
  	height:100%;
   width:100%;
   background-repeat:no-repeat;/*we want to have one single image not a repeated one*/  
   background-size:cover;/*this sets the image to fullscreen covering the whole screen*/  
   /*css hack for ie*/     

}

/* Contact title */
h1{
	margin-top: 0%;
	font-family: 'Abril Fatface', cursive;
	font-size: 45px;					
	text-align: center;
	color: #E13636;		
	text-shadow: 5px 8px 4px rgba(0,0,0,0.4),
                 2px 8px 10px rgba(0,0,0,0.15),
                 2px 15px 2px rgba(0,0,0,0.4),
                 2px 30px 30px rgba(0,0,0,0.4);

}

/* Contact sub title */
h2{
	font-family: 'Abril Fatface', cursive;
	font-size: 20px;				
	text-align: center;
	color: white;		
	margin-top: 15px;
	margin-bottom: 15px;
	font-weight: normal;
	border-bottom: 2px solid rgba(255,0,0,0.5);
}

table{
	margin: 0 auto;
	width: 80%;
}


/* Show google maps */
#googleMap{
	width: 100%;
	height: 170px;
}

/* Style Form */
#formStyle{
    font-family: 'Open Sans Condensed', arial, sans;
    width: 100%;
    padding: 10px;
    background: #FFFFFF;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.22);
    -moz-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.22);
    -webkit-box-shadow:  0px 0px 15px rgba(0, 0, 0, 0.22);

}

#formStyle input[type="text"],
#formStyle input[type="email"],
#formStyle textarea
{
    outline: none;
    display: block;
    width: 80%;
    padding: 7px;
    border: none;
    border-bottom: 1px dashed #ddd;
    margin-bottom: 10px;
    font: 16px Arial, Helvetica, sans-serif;
    height: 35px;
}
#formStyle textarea{
    height:75px;
}

#formStyle input[type="submit"]{
    background-color: #E13636;
    display: inline-block;
    cursor: pointer;
    color: white;
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 14px;
    padding: 8px 18px;
    text-transform: uppercase;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-border-radius: 20px; 
    -moz-border-radius: 20px; 
    border-radius: 20px;
}

#formStyle input[type="submit"]:hover {
    -webkit-box-shadow: 10px 10px 10px rgba(0,0,0,0.8);
    -moz-box-shadow: 10px 10px 10px rgba(0,0,0,0.8);
    box-shadow: 10px 10px 10px rgba(0,0,0,0.8);
    border-bottom: 2px solid black;
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

#formStyle input[type="submit"]:active {
   transform: translate(5px, 5px);
    -webkit-transform: translate(5px, 5px);
    -webkit-box-shadow: 5px 5px 5px rgba(0,0,0,0.8);
    -moz-box-shadow: 5px 5px 5px rgba(0,0,0,0.8);
    box-shadow: 5px 5px 5px rgba(0,0,0,0.8);
}

#formStyle input[type="submit"]:disabled {
    background-color: #E13636;
    opacity: 0.3;
}

/* --------------------------------------------- Responsive Mobile ----------------------------------------------------------*/
@media all and (max-width: 925px) {
    
    body{
    	background: url('../images/backgrounds/contact_mobile.jpg');
		background-repeat: no-repeat;
        background-attachment: fixed;
        background-size: cover;
        height: 100%;
        width: 100%;
    }
}

@media all and (max-width: 768px) {
	
	table{
		width: 95%;
		margin-right: 10px;
		margin-left: 10px;
	}
	

	
	

}