html,body {
	font-family: 'Montserrat', Helvetica, sans-serif !important;
	-webkit-font-smoothing: antialiased !important;
	width: 100%;
	height: 100%;
	margin: 0px;
	padding: 0px;
	font-size: 1em;
}

#rl_loading {
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 99;
	top: 0;
	left: 0;
    background: #000;
	color: #fff;
}
.load {
	width: 200px;
	height: 200px;
	margin: 0 auto;
	margin-top: 20%;
	background: #333;
	border-radius: 200px;
	animation: loadanim 0.8s infinite ease-in-out;
	-webkit-animation: loadanim 0.8s infinite ease-in-out;
}
@keyframes loadanim {
	0% { transform: scale(0); }
	100% { transform: scale(1.0); opacity: 0; }
}
.parallax-window {
    min-height: 400px;
    background: transparent;
}
div h1 {
	text-align: center;
	font-weight: 200;
	margin-bottom: 20px;
	font-size: 1.8em;
	text-indent: 2px;
	letter-spacing: 4px;
}

div h2 {
	text-align: center;
	font-weight: 100;
	margin-bottom: 10px;
	font-size: 1em;
	text-indent: 1px;
	letter-spacing: 2px;
	text-transform: uppercase;
}
.center {
	margin: 0 auto;
}

#landing {
	height: 80vh;
	width: 100%;
}
#title {
	position: absolute;
	margin: auto;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 50vw;
	height: 60vh;
	text-align: center;
	color: #fff;
}
#title h1 {
	font-size: 3em;
	text-shadow: 0 4px 3px rgba(0,0,0,1);
}
#title h2 {
	font-size: 1.2em;
	color: #fafafa;
	text-shadow: 0 3px 2px rgba(0,0,0,1);
}

#who {
	width: 100%;
	margin-top: 20px;
	margin-bottom: 20px;
	background: #fff;
	color: #333;
	text-align: justify;
}
#who h1 {
	margin-bottom: 10px;
}
#who h2 {
	color: #888;
	margin-bottom: 30px;
}
.grid {
	width: 60vw;
	margin: 0 auto;
	display: -ms-flexbox;
	-ms-flex-wrap: wrap;
	-ms-flex-direction: column; 
	flex-flow: row wrap;
	display: flex;
}
.grid-row {
	display: flex;
	flex-direction: row;
	width: 100%;
}
.grid-item {
	flex: 1;
	padding: 20px;
	margin: 0 10px 20px 10px;
	border: 3px solid #fafafa;
}
.grid-item img {
  width: 100%; 
  height: auto; 
}
.no-b {
	border: none;
}
.icons {
	text-align: center;
	width: 100%;
}
.icon {
	width: 80px;
	height: 80px;
	display: inline-block;
	opacity: 0.5;
	transition: all 0.5s ease;
}
.icon:hover {
	opacity: 1;
	transition: all 0.5s ease;
}
.l_html {
	background: url('../img/l_html.png');
	background-size: cover;
}
.l_css {
	background: url('../img/l_css.png');
	background-size: cover;
}
.l_jq {
	background: url('../img/l_jq.png');
	background-size: cover;
}
.l_php {
	background: url('../img/l_php.png');
	background-size: cover;
}
.l_mysql {
	background: url('../img/l_mysql.png');
	background-size: cover;
}
.l_ps {
	background: url('../img/l_ps.png');
	background-size: cover;
}
.l_wp {
	background: url('../img/l_wp.png');
	background-size: cover;
}



#what {
	width: 100%;
	background: #333;
	padding-top: 5px;
	padding-bottom: 30px;
	font-size: 1em;
	text-indent: 1px;
	letter-spacing: 2px;
	text-align: justify;
}
#what h1 {
	color: #fff;
	margin-bottom: 10px;
}
#what h2 {
	color: #fff;
	margin-bottom: 30px;
}
#where {
	width: 100%;
	background: #fafafa;
	padding: 20px 0 20px 0;
}
#where  h1 {
	color: #333;
	margin-top: 0px;
	margin-bottom: 10px;
}
#where h2 {
	color: #333;
	margin-bottom: 30px;
}
#where-info {
	width: 50vw;
	margin: 0 auto;
	padding: 20px;
	margin-bottom: 20px;
	text-align: center;
}

.tiny {
	font-size: 0.8em;
	letter-spacing: 0px;
	padding-top: 15px;
}
.disclaimer {
	padding-bottom: 15px;
}
form p {
	margin: 0;
	padding: 3px;
}
form {
	width: 50vw;
	margin: 0 auto;
	display: flex;
}
@media screen and (max-width: 1000px) { 
	form {
		width: 60vw;
		flex-direction: column;
	} 
}
@media screen and (max-width: 500px) { 
	form {
		width: 90vw;
	} 
	#where-info {
		width: 80vw;
	}
}
form span {
	color: red;
}
.form_left {
	flex: 0 0 50%;
	display: flex;
	flex-direction: column;
}
.form_left p {
	display: flex;
	flex-flow: wrap;
	justify-content: flex-end;
}
.form_left p label {
	flex: 1 1 150px;
	text-align: right;
}
.form_left p input {
	flex: 1 1 250px;
	padding-left: 5px;
}
.form_right {
	flex: 0 0 50%;
	display: flex;
	flex-direction: column;
}
.form_right > textarea {
	font-family: inherit;
	font-weight: 100;
	resize: vertical;
	flex: 1 1 200px;
	margin: 3px;
	border: 1px solid #ddd;
	border-radius: 4px;
}
label {
	font-weight: bold;
}
form input:not([type=submit]) {
	border: 1px solid #ddd;
	border-radius: 4px;
}
form input[type="submit"] {
	border: 1px solid #ddd;
	width: 100px;
	height: 30px;
	border-radius: 4px;
	background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 43%, rgba(246,246,246,0.5) 74%, rgba(237,237,237,0.8) 100%);
}
form input[type="submit"]:hover {
	background: -moz-linear-gradient(top, rgba(237,237,237,0.8) 0%, rgba(246,246,246,0.5) 26%, rgba(255,255,255,1) 57%, rgba(255,255,255,1) 100%);
	box-shadow: inset 0px 0px 3px 0px rgba(0,0,0,0.1);
}




#footer {
	width: 100%;
	background: #333;
	color: #bbb;
	font-size: 0.8em;
}
#footerwrap {
	width: 60vw;
	margin: 0 auto;
	padding: 20px 0 20px 0;
	text-align: center;
}
#footerwrap img {
	opacity: 0.3;
	transition: all 0.3s ease;
}
#footerwrap img:hover {
	opacity: 1;
	transition: all 0.3s ease;
}

@media screen and (max-width: 400px) {
	#landing {
		height: 100vh;
		background: url('../img/title.jpg') center;
		background-size: cover;
	}
	.grid {
		width: 94vw;
	}
	.grid-row {
		flex-direction: column;
	}
	.grid-item {
		flex: 1;
		padding: 10px;
		margin: 0 5px 10px 5px;
	}
}
@media screen and (min-width: 401px) and (max-width: 800px) {
	#landing {
		background: url('../img/title.jpg') center;
		background-size: cover;
	}
	.grid {
		width: 90vw;
	}
	.grid-row {
		flex-direction: column;
	}
	.grid-item {
		flex: 1;
		margin: 0 10px 20px 10px;
	}
}
@media screen and (max-width: 1100px) {
	.grid {
		width: 94vw;
	}
	div h1 {
	font-size: 1.4em;
	}
	div h2 {
		font-size: 0.9em;
	}
	#title {
		width: 80vw;
	}
	#title h1 {
		font-size: 1.8em;
	}
	#title h2 {
		font-size: 1em;
	}
	
	.icon {
		 width: 50px;
		 height: 50px;
	}
}