@charset "UTF-8";

/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}
/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
	width:100%;
}


/*
	Dreamweaver Fluid Grid Properties
	----------------------------------
	dw-num-cols-mobile:		5;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	14;
	dw-gutter-percentage:	25;
	
	Inspiration from "Responsive Web Design" by Ethan Marcotte 
	http://www.alistapart.com/articles/responsive-web-design
	
	and Golden Grid System by Joni Korpi
	http://goldengridsystem.com/
*/

/* Centres the form within the page */
form  {
    margin:0;
    width:100%;
}
form fieldset {
  float: left;
  width: 38%;
  margin-left:8%
}
/* Styles the text boxes */
input, textarea, file, select {
	width:97%;
	height:2em;
	font-family: 'Poppins', sans-serif;
	font-weight: 200;
	font-size: 12pt;
	color: #ccc;
	letter-spacing: 0pt;
	background-color:#ffffff;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border:0px solid #ffffff;
	padding: 1% 1.5%;
	margin-top:5px;
	outline:none;
	
}

	input:focus, textarea:focus {
		border:0.5px solid #ffffff;
	}

/* Styles the text area boxes (message field) */	
textarea  {
	height:5.8em;
	background-color: #ffffff;
}


/* Styles the submit button */
#send {
	background-color: #fdb913;
	font-family: 'Poppins', sans-serif;
	font-weight:900;
	font-size: 12pt;
	color: #fff;
	letter-spacing: 10pt;
	line-height: 20pt;
	width:100%;
	height:6vw;
	text-align: center;
	/* text-indent:-9999px; */
	border:none;
	margin-top:25px;
	cursor:pointer;
}

/* Styles the submit hover */	
#send:hover {
	color:#fff;
	background-color: #d21f31;
	opacity:0.9;
}


@media only screen and (max-width: 769px) {
form fieldset {
  float: left;
  width: 100%;
}
#send {
	font-size: 13pt;
	line-height: 20pt;
	height:13vw;
}
input, textarea, file, select {
	width:96%;
	height:2em;
	font-size: 13pt;
	font-weight: 400;
	padding: 1% 2%;
}
textarea  {
	height:5.8em;
	background-color: #ffffff;
}	

}
