/**
 * site.css
 * Base styles, feel free to replace with your own and/or use the boilerplate of your choice
 */

html {

	overflow-y: scroll;
	font-size: 1em;
}

body {

	font-family: 'Roboto', Arial, Helvetica;
	font-size: 16px;
	color: #222222;
}

p {

	line-height: 1.5;
	margin: 0 0 5px;
}

h1, h2, h3, h4 {

	font-weight: inherit;
	line-height: 1.2;
	margin: 0 0 5px;
}

h1 { font-size: 2.074em; }
h2 { font-size: 1.728em; }
h3 { font-size: 1.440em; }
h4 { font-size: 1.200em; }

.animable {

	/* opacity */
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
	opacity: 0;
}

.button {

	font-family: 'Oswald',  Arial, Helvetica;
	font-weight: 300;
	text-transform: uppercase;
	border-radius: 0;
}

.button.button-primary {

	background-color: #70AF6D;
	border-color: #70AF6D;
	color: #FFFFFF;
}

.button.button-primary:hover {

	background-color: #589B55;
	border-color: #589B55;
	color: #FFFFFF;
}

.button.button-secondary {

	background-color: #222222;
	border-color: #222222;
	color: #FFFFFF;
}

.button.button-secondary:hover {

	background-color: #333333;
	border-color: #333333;
	color: #FFFFFF;
}

.form-group .form-control {

	border-radius: 0;
}

.text-left-responsive {

	text-align: center;
}

.text-center-responsive {

	text-align: center;
}

.the-content h1,
.the-content h2,
.the-content h3,
.the-content h4,
.the-content h5 {

	font-weight: 300;
}

.block.block-gray {

	background: #FAFAFA;
}

.block .block-title {

	font-size: 3em;
	color: #70AF6D;
	margin-bottom: 15px;
	font-weight: 300;
}

.block .block-subtitle {

	font-size: 2.25em;
	color: #70AF6D;
	margin-bottom: 15px;
	font-weight: 300;
}

.block .block-title.has-tagline {

	margin-bottom: 0;
}

.block .block-tagline {

	font-size: 1.5em;
	margin-bottom: 15px;
	color: #333333;
	font-weight: 300;
}

.site-header {

	background: #70AF6D;
	color: #FFFFFF;
	text-align: center;
	/* fixed header */
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 100;
}

.site-header .site-logo {

	display: block;
	margin-bottom: 5px;
}

.site-header .nav-header {

	padding-top: 4px;
}

.site-header .nav-header ul li {

	margin-left: 15px;
	/* inline-block */
	display: inline-block;
	*display: inline;
	*zoom: 1;
}

.site-header .nav-header ul li a {

	font-family: 'Oswald', sans-serif;
	font-size: 1.25em;
	text-transform: uppercase;
	display: block;
	color: inherit;
}

.site-footer {

	background: #404040;
	color: #FFFFFF;
}

.site-footer .fa {

	color: #EF9A9A;
}

.block-splash {

	background: #70AF6D;
	padding: 120px 0;
	margin-bottom: 30px;
}

.block-splash .splash-buttons {

	text-align: center;
	position: absolute;
	left: 0;
	bottom: -28px;
	width: 100%;
	z-index: 1;
}

.block-splash .splash-buttons .button {

	margin: 0 3px 5px;
}

.block-overview {

	padding: 30px 0;
}

.block-overview .highlight {

	margin-bottom: 30px;
	text-align: center;
}

.block-overview .highlight .highlight-icon {

	background: #70AF6D;
	color: #FFFFFF;
	font-size: 35px;
	width: 72px;
	height: 72px;
	line-height: 72px;
	border-radius: 72px;
	text-align: center;
	margin-bottom: 15px;
	/* inline-block */
	display: inline-block;
	*display: inline;
	*zoom: 1;
}

.block-features {

	padding: 30px 0;
}

.block-features h3 {

	padding-left: 52px;
	position: relative;
	min-height: 42px;
	line-height: 42px;
}

.block-features h3 .feature-icon {

	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 42px;
	height: 42px;
	line-height: 42px;
	border-radius: 42px;
	background: #454545;
	color: #FFFFFF;
	text-align: center;
}

.block-features ul {

	list-style: none;
	padding: 0;
	margin: 0 0 15px;
}

.block-features ul li {

	list-style: none;
	border-left: 4px solid #DDDDDD;
	padding-left: 10px;
	cursor: default;
	/* transition */
	-webkit-transition: all 350ms;
	-o-transition: all 350ms;
	transition: all 350ms;
}

.block-features ul li:hover {

	border-left-color: #70AF6D;
}

.block-started {

	padding: 30px 0;
}

.block-dev {

	padding: 30px 0;
}

@media (min-width: 768px) {

	.text-left-responsive {

		text-align: left;
	}

	.text-center-responsive {

		text-align: center;
	}

	.site-header {

		text-align: left;
	}

	.site-header .site-logo {

		display: inline;
	}

	.site-header .nav-header ul {

		text-align: right;
	}

}

@media (min-width: 1000px) {

	/*.block-overview .highlight {

		padding-left: 96px;
		text-align: left;
	}

	.block-overview .highlight .highlight-icon {

		display: block;
		position: absolute;
		left: 0;
		top: 0;
	}*/

}