/* ----------------------------------
#. Global
---------------------------------- */

@import url(http://fonts.googleapis.com/css?family=Rosario:400,700);
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,600,700);
@import url(//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.min.css);

* {
	-webkit-font-smoothing: antialiased;
}

img {
	border: none;
}

.gallery{
display:none;
}

.gallery.home{
display:block;
}
/* ----------------------------------
#. HTML/Body
---------------------------------- */

html, body {
	margin: 0;
	padding: 0;
}

body {
	background: url('../img/bg.jpg') repeat;
	font: 14px 'Open Sans', Helvetica, Arial, sans-serif;
}

/* ----------------------------------
#. General
---------------------------------- */

.box {
padding: 15px;
box-shadow: 0 1px 3px #999;
background: #fff;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 2px;
margin-top: -5px;
}

.box2 {
padding: 15px;
box-shadow: 0 1px 3px #333;
background: #636363;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 2px;
margin-top: -5px;
}

hr {
	height: 4px;
	border: none;
	margin: 20px 0;
	background: url('../img/hr.png') top left repeat-x;
}

.clear {
	clear: both;
}

.well {
	padding: 25px;
	background: #f5f5f5;
	border: 1px solid #e6e6e6;
}

.float-left {
	float: left;
}

.float-right {
	float: right;
}

.list{
	list-style:none;
	padding:0;
	margin:0;
}
.list li{
	background:url('../img/tick.png')center left no-repeat;
	margin:5px 0;
	padding-left:30px;
}

/* ----------------------------------
#. Form
---------------------------------- */

form {

}

form label {
	display: block;
	margin: 15px 0 5px;
}

form input[type='text'],
form textarea {
	padding: 5px 7px;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	
	border: 1px solid #ccc;
	box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.1);
}

form input[type='text'] {
	width: 200px;
}

form textarea {
	width: 400px;
	height: 100px;
	min-height: 100px;
	resize: vertical;
}

form input[type='submit'] {
	margin-top: 20px;
	background: #49722a;
	color: #fff;
	display: inline-block;
	padding: 10px 15px;
	
	border: none;
	
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	
	transition: background .5s ease;
	-moz-transition: background .5s ease;
	-webkit-transition: background .5s ease;
}

	form input[type='submit']:hover {
		cursor: pointer;
		background: #ccc;
	}

/* ----------------------------------
#. Typography
---------------------------------- */

a {
	text-decoration: none;
	color: green;
}

p {
	line-height: 22px;
}

h1, h2, h3, h4, h5, h6 {
	color: #333;
	font-family: 'Rosario';
}

/* ----------------------------------
#. Button
---------------------------------- */

.button {
	display: inline-block;
	padding: 7px 15px;

	border: 1px solid #697f0f;

	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;

	color: #fff;
	font-size: 12px;
	text-transform: uppercase;
	box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.3);

	background-color: #49722a; /* Top Colour */
}

	.button:hover {

	}

/* ----------------------------------
#. Container
---------------------------------- */

.container {
	width: 960px;
	margin: 0 auto;
	padding: 0 25px;
}

/* ----------------------------------
#. Header
---------------------------------- */

.header {
	padding: 25px 0 0;
}

	.header .logo {
		float: left;
		margin-top: 15px;
	}

		.header .logo h1 {
			color: #ccc;
			font-size: 32px;
		}

			.header .logo h1 span {
				color: #49722a;
			}

	.header .contact-details {
		float: right;
		text-align: right;
		margin-top: 15px;
	}

		.header .contact-details p {
			margin: 0;
			line-height: 24px;
			font-size: 16px;
		}

	.header .navigation {
		margin-top: 25px;
		border-top: 1px solid #dedede;
		background: #eee;
	}

		.header .navigation ul {
			margin: 0;
			padding: 0;
			list-style: none;
			border-left: 1px solid #dedede;
		}

		.header .navigation ul li {
			float: left;
			border-right: 1px solid #dedede;
		}

		.header .navigation ul li a {
			display: block;
			padding: 15px 25px;
			text-align: center;

			color: #555;
		}

			.header .navigation ul li a i {
				margin-bottom: 5px;
				display: block;
				font-size: 14px;
			}

			.header .navigation ul li.current,
			.header .navigation ul li:hover {
				color: #fff;
				background: #49722a;
				border-right: 1px solid #49722a;
			}

				.header .navigation ul li.current a,
				.header .navigation ul li a:hover {
					color: #fff;
				}

/* ----------------------------------
#. Content
---------------------------------- */

.content {
	padding: 80px 0;
}

	.content h1:first-child {
		margin-top: 0;
		margin-bottom: 0;
	}

/* ----------------------------------
#. Slider
---------------------------------- */

.slider {
	height: 400px;
	position: relative;
}

	.slider li {
		height: 400px;
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
		position: relative;
	}
	
	.slider li .caption {
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		
		color: #fff;
		background: rgba(0, 0, 0, 0.6);
	}
	
		.slider li .container {
			padding: 15px 0;
		}
	
		.slider li .caption p {
			margin: 0;
		}

.slider-shadow {
	position: absolute;
	top: 0;
	left: 50%;
	height: 50px;
	width: 960px;
	margin-left: -480px;
	z-index: 9999;

	background: url('../img/shadow.png') top center no-repeat;
}

/* ----------------------------------
#. Page Header
---------------------------------- */

.page-header {
	background: #3c3e4a url('../img/shadow.png') top center no-repeat;
	padding: 40px 0;
	text-align: center;

	color: #c8cbd4;
	font-size: 18px;
}

	.page-header h1 {
		font-size: 24px;
		color: #fff;
		font-weight: 600;
	}

/* ----------------------------------
#. Gallery
---------------------------------- */

.gallery {

}

	.gallery ul {
		margin: 0;
		padding: 0;
	}

	.gallery ul li {
		float: left;
		margin-right: 20px;
		margin-bottom: 20px;

		overflow: hidden;
		position: relative;
	
		width: 225px;
		height: 150px;

		background-size: cover;
		background-repeat: no-repeat;
		background-position: center;

		border-bottom: 3px solid #ccc;

		transition: border-bottom-color .3s ease;
		-moz-transition: border-bottom-color .3s ease;
		-webkit-transition: border-bottom-color .3s ease;
	}

		.gallery ul li.last {
			margin-right: 0;
		}

		.gallery ul li:hover {
			border-bottom-color: #49722a;
		}

	.gallery ul li a {
		width: 100%;
		height: 100%;
		display: block;
	}

	.gallery ul li .overlay {
		display: none;

		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;

		color: #fff;
		text-align: center;

		background: url('../img/overlay.png');
	}

		.gallery ul li .overlay .inner {
			padding: 25px;
		}

/* ----------------------------------
#. Columns
---------------------------------- */

.columns {
	
}

	.columns .strap {
		font-size: 16px;
		text-align: center;
		margin-bottom: 50px;
	}

		.columns .strap h2 {
			font-size: 24px;
			margin-top: 0;
		}

			.columns .strap h2 span {
				color: #49722a;
			}

		.columns .strap p {
			margin-bottom: 0;
		}

	.columns .column {
		float: left;
		width: 460px;
		margin-right: 40px;
	}

		.columns .column.last {
			margin-right: 0;
		}

/* ----------------------------------
#. How We Work
---------------------------------- */

.how-we-work {
	margin-top: 80px;
}

	.how-we-work .strap {
		text-align: center;
		margin-bottom: 50px;
	}

	.how-we-work .strap h2 {
		margin-top: 0;
	}

	.how-we-work .column {
		float: left;
		width: 300px;
		margin-right: 30px;

		text-align: center;
	}

		.how-we-work .column.last {
			margin-right: 0;
		}

	.how-we-work .column .icon {
		width: 60px;
		height: 40px;
		padding: 10px 0;
		margin: 0 auto -30px;

		text-align: center;

		border-radius: 30px;
		-moz-border-radius: 30px;
		-webkit-border-radius: 30px;

		background: #49722a;

		position: relative;
		z-index: 9999;

		color: #fff;
		font-size: 28px;
	}

	.how-we-work .column .well {
		position: relative;
		z-index: 9998;
		padding-top: 55px;
	}

		.how-we-work .column .well h3 {
			margin-top: 0;
		}

		.how-we-work .column .well p:last-child {
			margin-bottom: 0;
		}

/* ----------------------------------
#. Recent Work
---------------------------------- */

.recent-work {
	margin-top: 80px;
}

	.recent-work .strap {
		text-align: center;
		margin-bottom: 50px;
	}

	.recent-work .strap h2 {
		margin-top: 0;
	}

	.how-we-work .strap h2 {
		margin-top: 0;
	}

	.recent-work .gallery {

	}

/* ----------------------------------
#. Our Services
---------------------------------- */

.our-services {
	margin-top: 80px;
	margin-bottom: 50px;
}

	.our-services .strap {
		text-align: center;
		margin-bottom: 50px;
	}

		.our-services .strap h2 {
			margin-top: 0;
		}

	.our-services ul {
		margin: 0;
		padding: 0;
		list-style: none;
	}

	.our-services ul li {
		float: left;
		width: 300px;
		margin-right: 30px;
		margin-bottom: 30px;
	}

		.our-services ul li.last {
			margin-right: 0;
		}

	.our-services ul li .icon {
		float: left;
		width: 50px;
		height: 34px;
		padding: 8px 0;

		border-radius: 30px;
		-moz-border-radius: 30px;
		-webkit-border-radius: 30px;

		background: #49722a;

		color: #fff;
		font-size: 22px;
		text-align: center;
	}

	.our-services ul li .inner {
		float: right;
		width: 220px;
	}

		.our-services ul li .inner h3 {
			margin-top: 0;
		}

/* ----------------------------------
#. Footer
---------------------------------- */

.footer {
	padding: 50px 0;
	background: #3c3e4a;
	border-top: 1px solid #dedede;
}

	.footer .column {
		float: left;
		width: 200px;
		margin-right: 30px;

		font-size: 12px;
		line-height: 20px;
	}

		.footer .column.last {
			margin-right: 0;
			width: 500px;
		}

	.footer .column h3 {
		color: #fff;
		margin-top: 0;
		text-transform: uppercase;
		font-size: 13px;
	}
	
	.footer .column p {
		color: #fff;
	}

	.footer .column ul {
		margin: 0;
		padding: 0;
		list-style: none;
	}

		.footer .column ul li {
			padding: 3px 0;
			background: url('../img/li.png') left center;
			color: #fff;
		}

		.footer .column ul li a {
			color: #c8cbd4;
		}

		.footer .column ul li i {
			display: none;
		}
		
#toggle {
	cursor: pointer;
}

.extra {
	display: none;
	background: #31333C;
	padding: 25px 0;
	font-size: 12px;
}

	.extra ul {
		margin: 0;
		padding: 0;
		text-align: center;
		list-style: none;
	}
	
	.extra ul li {
		display: inline-block;
		padding: 5px 7px;
	}
	
	.extra ul li a {
		color: #fff;
	}

.lower-footer {
	font-size: 11px;
	padding: 15px 0;
	background: #1e2027;
	color: #fff;
}

	.lower-footer .copyright {
		float: left;
	}

	.lower-footer .credit {
		float: right;
		text-align: right;
	}

		.lower-footer .credit a {
			color: #fff;
		}