* {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
body {
	font-family: 'Ubuntu', sans-serif;
	background: #dbd5bc;
}
.wrapper {
	max-width: 960px;
	width: 100%;
	margin: 0 auto;
	background: white;
}
.clear {
	clear: both;
}
.toggler {
	position: absolute;
	top: 20px;
	right: 20px;
	padding: 10px 30px;
	border: none;
	outline: none;
	cursor: pointer;
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: 1px;
	color: #056d4e;
	background: #eee;
	border-radius: 5px;
	display: none;
}
.logo {
	width: 100%;
	text-align: center;
	background: #0c6e51;
	padding: 25px;
	border-bottom: 1px solid #dbd5bc;
}
.logo h1 a {
	font-size: 36px;
	color: white;
	text-decoration: none;
	font-weight: lighter;
}
.navbar {
	width: 100%;
	margin: 0;
	padding: 0;
}
.navbar li {
	display: inline-block;
	margin: 0;
	width: 25%;
	height: 58px;
	background: #fff;
	border: 1px solid #bbb;
	float: left;
	text-align: center;
}
.navbar li a {
	font-size: 14px;
	display: block;
	width: 100%;
	padding: 0 20px;
	line-height: 58px;
	color: #056d4e;
	text-decoration: none;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 2px;
}
.navbar li:hover {
	background: #0c6e51;
	color: white;
}
.navbar li:hover a {
	color: white;
}

.banner {
	height: 500px;
	background: url(../img/banner1.jpg) no-repeat;
	background-size: cover;

}
.banner h4 {
	font-size: 40px;
	padding-top: 80px;
	padding-left: 20px;
	color: #222;
}
.services {
	padding: 100px 0;
	text-align: center;
}
.services h1 {
	font-size: 40px;
}
.services h3 {
	font-size: 20px;
	font-family: "Open sans", sans-serif;
	padding-bottom: 30px;
}

.service-list li {
	padding: 20px;
	border: 1px solid #bbb;
	cursor: default;
	-webkit-transform: scale(1);
	    -ms-transform: scale(1);
	        transform: scale(1);
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}
.service-list li:hover {
	background: #0c6e51;
	color: white;
	-webkit-transform: translate(5px, -5px);
	    -ms-transform: translate(5px, -5px);
	        transform: translate(5px, -5px);
}
footer {
	background: #0c6e51;
	padding: 40px 0;
	overflow: hidden;
	color: white;
}
footer .copy {
	float: left;
	margin-left: 20px;
	font-size: 1.3rem;
}
footer .phone {
	float: right;
	margin-right: 20px;
	font-size: 1.3rem;
}

@media only screen and (max-width:768px) {
	.navbar {
		display: none;
		-webkit-transition: 0.3s;
		-o-transition: 0.3s;
		transition: 0.3s;
	}
	.navbar li {
		display: block;
		width: 100%;
	}
	.logo {
		float: left;
		text-align: left;
	}
	.logo h1 a {
		font-size: 28px;
	}
	.toggler {
		display: block;
	}
	.show {
		display: block;
	}
	.banner h4 {
		font-size: 32px;
	}
	.services {
		padding: 50px 0;
	}
	footer {
		line-height: 2em;
	}
	footer .copy {
		float: none;
		margin-left: 0;
		text-align: center;
	}
	footer .phone {
		float: none;
		margin-right: 0;
		text-align: center;
	}
}