@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Amaranth:400,400i,700');

/* 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/
*/

/* Mobile Layout: 480px and below. */


label 
{
    display:block;
    margin-top:10px;
	letter-spacing:2px;
}

/* 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: 'Jost', sans-serif;
	font-weight: 100;
	font-size: 13pt;
	color: #231f20;
	letter-spacing: 0pt;
	background-color:#fff;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border:0px solid #fff;
	padding: 1% 1.5%;
	margin-top:5px;
	outline:none;
	
}

	input:focus, textarea:focus {
		border:0.5px solid #c2361a;
		background: #fff;
	}

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


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

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


@media (max-width: 600px) {
	form fieldset {
  float: left;
  width: 100%;
}
#send {
	font-size: 16pt;
	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: #fff;
}	

}
