html, body {
	font-family: "Open Sans", sans-serif;
	color: #444;
}
.wrapper {
	max-width: 1200px;
	margin: auto;
}
.clear {
	clear: both;
}

.toggler {
	position: absolute;
	top: 35px;
	float: right;
	right: 20px;
	font-size: 28px;
	cursor: pointer;
	text-transform: uppercase;
	font-weight: bold;
	color: #444;
	display: none;
}

.top {
	height: 40px;
	background: #ddd;
}
.top p {
	float: right;
}
.top span {
	line-height: 40px;
	margin: 0 10px;
	font-weight: bold;
}
.top .nav-icons {
	color: tomato;
}
.bottom {
	height: 100px;
	border-bottom: 40px solid #ddd;
}
.logo {
	float: left;
	margin-top: 23px;
	margin-left: 15px;
}
.logo h1 {

}
.logo a {
	text-decoration: none;
	color: #444;
	font-size: 36px;
	font-weight: bold;
}
.logo p {
	font-size: 18px;
	cursor: default;
}
.navbar {
	float: right;
}
.navbar li {
	display: inline-block;
	padding: 0 30px;
	line-height: 100px;
}
.navbar a {
	text-decoration: none;
	color: #444;
	font-size: 18px;
	font-weight: bold;
	text-transform: uppercase;
}
.navbar a:hover {
	color: tomato;
}
.banner {
	height: 600px;
	background: url(../img/banner.jpg) no-repeat;
	background-size: cover;
	position: relative;
	border-bottom: 40px solid #ddd;
}
.banner-text {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);

}
.banner-text h2 {
	font-size: 32px;
	font-weight: bold;
	color: white;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.about, .services, .contact {
	padding: 100px 0;
	overflow: hidden;
	border-bottom: 40px solid #ddd;
}
.about h2, .services h2, .contact h2 {
	font-size: 36px;
	text-align: center;
	font-family: 'Titan One', cursive;
	color: tomato;
	padding-bottom: 40px;
}
.about-text {
	width: 48%;
	float: left;
	margin: 1%;
}
.about-text p {
	color: #666;
	line-height: 1.5em;
	font-size: 20px;
}

.box {
	width: 50%;
	float: left;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	height: 250px;
	background: #f7f7f7;
	padding: 30px;
	border: 1px solid #ccc;
}
.box h3 {
	font-weight: bold;
	font-size: 24px;
	padding-bottom: 20px;
	text-decoration: underline;
}
.box p {
	line-height: 1.5em;
	font-size: 18px;
}
.contact-list li {
	padding: 20px;
	background: #f7f7f7;
	border: 1px solid #ccc;
	font-weight: bold;
}
footer {
	padding: 40px 0;
	border-bottom: 40px solid #ddd;
	text-align: center;
}
footer a {
	color: tomato;
	font-size: 28px;
}
footer p {
	padding-top: 10px;
	font-size: 18px;
}

@media (max-width: 768px) {
	
	.toggler {
		display: block;
	}
	.top {
		display: none;
	}
	.navbar {
		display: none;
		background: #222;
		width: 100%;
		position: absolute;
		top: 100px;
		z-index: 4;
	}
	.navbar li {
		display: block;
		border: 1px solid #333;
		padding: 25px 0;
		text-align: center;
		margin: 0;
		line-height: 0px;
		background: #fff;
	}
	.navbar li:hover {
		background: #eee;
	}
	.show {
		display: block;
	}
	.about-text {
		width: 96%;
		margin: 2%;
		float: none;
	}
	.about-text p {
		font-size: 100%;
	}
	.box {
		width: 96%;
		float: none;
		margin: 2%;
		height: auto;
	}
	.box p {
		font-size: 100%;
	}
	.contact-list {
		width: 96%;
		margin: 0 2%;
	}
}