/* Basic */

.pace {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0.8);
	z-index: 999;
}

.pace-progress {
	position: fixed;
	top: 0;
	left: 0;
	height: 10px;
	background: #6FBB00;
	z-index: 1000;
	transition: width 1s ease;
}


body {
	font-family: proxima_nova;
	font-size: 15px;
	font-weight: 300;
	line-height: 1.5;
	color: #868686;
	background-color: #ffffff;
}

a { color: inherit; }

.container {
	width: 970px;
	margin: 0 auto;
}

#preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0.8);
	z-index: 999;
}

/* Banners */

#banners {
	position: relative;
	overflow: hidden;
}

.banner-item,
.banner-item img { width: 100%; }

.banner-pager-content {
	position: absolute;
	bottom: 20px;
	width: 100%;
	z-index: 990;
}

.scroll-down {
	display: block;
	width: 74px;
	height: 74px;
	background: #fff url(../images/arrow-down.png) no-repeat 50%;
	margin: 0 auto 65px;
	border-radius: 50%;
	transition: all 0.4s ease;
}

.scroll-down:hover {
	box-shadow: 0 -2px 0 #000;
	transform: translateY(4px);
}

.banner-pager {
	text-align: center;
	height: 12px;
}

.banner-pager a {
	display: inline-block;
	vertical-align: top;
	width: 12px;
	height: 12px;
	border: 2px solid #fff;
	margin: 0 3px;
	border-radius: 50%;
	transition: background 0.4s ease;
}

.banner-pager .cycle-pager-active { background: #6FBB00; }

/* Nav */

#nav-top {
	background: #fff;
	padding: 50px 0;
}

#nav-top .logo {
	float: left;
	width: 153px;
	height: 44px;
	background: url(../images/logo.png) no-repeat;
}

#nav-top ul { float: right; }

#nav-top li { display: inline; }

#nav-top li a {
	float: left;
	height: 44px;
	line-height: 44px;
	text-transform: uppercase;
	color: #333;
	margin-left: 50px;
	transition: color 0.4s ease;
}

#nav-top li.selected a,
#nav-top li a:hover { color: #6FBB00; }

/* Main */

section { padding: 50px 0; }

.page-title {
	margin-bottom: 50px;
	text-align: center;
	text-transform: uppercase;
}

.page-title h2 {
	font-size: 40px;
	color: #333;
}

/* Footer */

footer {
	background: #6FBB00;
	padding: 20px 0;
	text-align: center;
}

footer .scroll-top {
	display: block;
	width: 74px;
	height: 74px;
	background: #fff url(../images/arrow-up.png) no-repeat 50%;
	margin: 0 auto 20px;
	border-radius: 50%;
	transition: all 0.4s ease;
}

footer .scroll-top:hover {
	box-shadow: 0 2px 0 #000;
	transform: translateY(-4px);
}

footer .copy {
	font-size: 13px;
	color: #fff;
	text-transform: uppercase;
	margin: 0;
}