/* Contact Form */

/*RESET*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {margin:0; padding:0; border:0; outline:0; font-size:100%; vertical-align:baseline; background:transparent;} body {line-height: 1;}ol, ul{list-style:none;} blockquote, q{quotes:none;} blockquote:before, blockquote:after, q:before, q:after{content:'';content:none;} :focus{outline:0;} ins{text-decoration:none;} del{text-decoration:line-through;} table{border-collapse:collapse; border-spacing:0;}

/*MAIN*/

html {
  height: 100%;
}

body { 
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
	background: #fff;
	margin:0;
	background-image: url("img/sunset.jpg");
	background-size: cover;
  	background-position: center center;
	background-attachment: fixed;
  	height: 100%;
  	padding: 1px;
	}

a {
	color: #3399ff;
	text-decoration: underline;
	font-weight: bold;
}

a:hover {
	color: #444;
}



h1 {
	text-align: center;
	font-size:3vw;
	margin: 10px 0;
}

h2 {
    text-decoration: none;
	font-size: 1.4em;
	color: #330000;
	line-height: 1.15em;
	margin: 10px 0 ;
}

h3 {
	font-size: 1.3em;
	color: black;
	line-height: 1.15em;
	margin: 15px 0 ;
}


p {
	font-size: 24px;
	line-height: 1.1em;
	margin-bottom: 10px;
}


.container {
	padding:25px
}

form {
	margin: 20px auto 0;
	padding: 24px 12px 0 24px;
	max-width: 500px;
	border: 1px solid rgba(100, 100, 100, .5);
	border-radius: 5px;
}








.content{
  /*background-color: rgba(0, 0, 0, 0.2);*/
  padding: 16px 0;
  box-sizing: border-box;
  margin: 100px auto 0;
  width: 500px;
  text-align: center;

}



a:hover {
	color: #444;
}



header {
	background-color: rgba(220,220,220,0.8);
	width: 100%;
	height: 76px;
	position: fixed;
	top: 0;
	left: 0;
	border-bottom: 4px solid #4C9CF1;
	z-index: 10;
}

header a {
	color: #4C9CF1;
	text-decoration: none;
	font-weight: bold;
}

header li {
		display: inline-block;
		float: left;
		padding: 10px 8px;		

}

#logo{
	margin: 20px 10px;
	float: left;
	width: 200px;
	height: 40px;
	background: url(../img/hxWebServices.png) no-repeat center;
	display: block;
}

	/* START NAVBAR HEADER */
	nav {
		float: right;
		padding: 20px;		
	}

	.navy {
		font-size: 13px;
		text-decoration: underline;
		font-family: Arial, Helvetica, sans-serif;
	}

	
	.navy li:hover {
		background-color: rgba(150,150,150,0.5);

	}


	#menu-icon {
		display: hidden;
		width: 40px;
		height: 40px;
		background: #4C8FEC url(img/menu-icon.png) center;
	}

	a:hover#menu-icon {
		background-color: #444;
		border-radius: 4px 4px 0 0;
	}

	ul {
		list-style: inherit;
	}

	li {
		float: left;
		padding: 10px 8px;		
	}

	.current {
		color: #2262AD;

	}

	/* END NAVBAR HEADER */



	
	
	h1{		
		font-size: 2em;
		color: #2262AD;
		margin: 10px 0;
	}


	.pf-links {
		background-color: rgba(220,220,220,0.8);
		width: 375px;
		margin: 2% auto;
		padding: 12px 0;
		border:1px solid black;
	}
	
	.pf-links h2 { 
		font-size: 1.4em;
		text-align: left;
		margin: 8px 0 8px 12px;
		}
		
	.pf-links a {
		text-decoration: none;
		padding: 4px;
	}

	.pf-links a:hover {
		background-color: rgba(160,160,160,0.6);
		padding: 4px;
	}







/*MEDIA QUERY*/
@media only screen and (max-width : 720px) {


	#menu-icon {

		display:inline-block;

	}

	nav ul, nav:active ul { 

		display: none;
		position: absolute;
		padding: 20px;
		background: #fff;
		border: 5px solid #444;
		right: 20px;
		top: 60px;
		width: 50%;
		border-radius: 4px 0 4px 4px;

	}

	nav li {

		text-align: center;
		width: 100%;
		padding: 10px 0;
		margin: 0;

	}

	nav:hover ul {

		display: block;

	}
	
	.content{
  width: 400px;
}
	
	form {
	margin: 20px auto 0;
	padding: 12px;
	width: 390px;
}






