*{
	font-family: 'Montserrat', sans-serif;
	padding: 0;
	margin:0;
}

body{
	overflow-x: hidden;
}

.clear{
	clear: both;
}

.wrap{
	width: 80%;
	margin:auto;
	max-width: 1000px;
}

.alert-not-found{
	font-weight: 300;
	text-align: left;
	padding: 50px;
	letter-spacing: 3px;
	font-size: 30px;
}

header{
	padding: 40px 0 10px 0;
	background-color: #00b050;
}

header .logo{
	font-size: 50px;
	float: left;
	letter-spacing: -7px;
}

header .logo a{
	text-decoration: none;
	color: #ffffff;
}

header nav{
	float: right;
	margin:13px 0 0 0;
	line-height: 45px;
}

header nav > ul > li{
	display: inline-block;
	position: relative;
}

header nav > ul > li > a{
	display: block;
	text-decoration: none;
	color: #ffffff;
	background-color: #92d050;
	padding: 0 15px;
	font-size: 14px;
	margin:0 0 0 5px;
	border-radius: 3px;
	border:solid 1px #6eaa2e;
}

/* sub-nav */
header nav > ul > li > ul{
	position: absolute;
	display: none;
	width: 100%;
}

header nav > ul > li:hover > ul{
	display: block;
}

header nav > ul > li > ul > li{
	margin:0 0 4px 0;
	list-style: none;
	color: #ffffff;
}

header nav > ul > li > ul > li > a{
	color: #ffffff;
	background-color: #00b050;
	display: block;
	text-decoration: none;
	padding: 0 10px;
	border-radius: 3px;
}

/* orange-banner */
.orange-banner{
	height: 40px;
	background-color: #f1800f;
}

/* slider */
.slider{
	width: 100%;
}

.slider img{
	width: 100%;
}

.slider-2{
	height: 250px;
	overflow:hidden;
	width: 100%;
}

.slider-2 img{
	width: 100%;
}

.page-banner{
	text-align: center;
}

.page-banner h1{
	font-weight: 500;
	font-size: 25px;
	color: #ff5000;
	padding: 0px 0;
	margin:50px 0 0 0;
	position: relative;
	display: inline-block;
}

.page-banner h1:before{
	content: "";
	width: 200%;
	height: 3px;
	background-image: url(../img/img1.png);
	position: absolute;
	left: -220%;
	top:50%;
	background-size: 100%;
}

.page-banner h1:after{
	content: "";
	width: 200%;
	height: 3px;
	background-image: url(../img/img1.png);
	position: absolute;
	right: -220%;
	top:50%;
	background-size: 100%;
}

/* content */
.content{
	padding: 30px 0;
}

.content h1{
	font-weight: bold;
	margin:0 0 10px 0;
	font-size: 30px;
	color: #222;
}

.content p{
	font-weight: 400;
	font-size: 20px;
	margin:0 0 10px 0;
	color: #444444;
}

.content h2{
	font-size: 25px;
	font-weight: bold;
	color: #222222;
}

.content h3{
	margin:50px 0 0 0;
	font-weight: 300;
	letter-spacing: 2px;
	font-size: 30px;
	text-align: center;
}

.content .aside{
	width: 15%;
	float: left;
}

.content .aside li{
	line-height: 35px;
	list-style: none;
}

.content .aside li a{
	display: block;
	text-decoration: none;
	background-color: #f1800f;
	margin:0 0 10px 0;
	padding: 0 10px;
	color: #ffffff;
	border:solid 3px rgba(255,255,255,.3);
	border-radius: 5px;
	font-weight: 400;
	box-shadow: 0 3px 2px rgba(0,0,0,.2);
}

/* contain */
.contain{
	width: 80%;
	float: right;
	padding: 0 0 0 0;
}

.contain article{
	width: 48%;
	display: inline-block;
	margin:0 2% 2% 0;
	border:solid 3px #002060;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
	height: 250px;
}

.contain article:last-child{
	width: 100%;
}

.contain article img{
	max-height: 250px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}


.content article{
	width: 29%;
	display: inline-block;
	margin:0 1% 2.5% 1.5%;
	border:solid 3px #002060;
	border-radius: 10px;
	background-color: #f0f0f0;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
	
}

.content article:hover{
	box-shadow: 0 4px 3px rgba(0,0,0,.4);
}

.content article .image-gallery{
	width: 100%;
	height: 250px;
	position: relative;
	overflow: hidden;
}

.content article .image-gallery img{
	max-height: 250px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

.content article h4{
	text-align: center;
	font-weight: 400;
	font-size: 16px;
	padding: 10px 0;
}

/* form */
form{
	padding: 20px 0;
	margin:auto;
	width: 550px;
}

form input[type="text"],
form textarea{
	padding: 12px 1%;
	border:solid 1px #aaaaaa;
	width: 98%;
	resize: none;	
	outline: 	none;
}

form input[type="submit"]{
	padding: 12px 2%;
	background-color: #ff7000;
	border:none;
	outline: 	none;	
	cursor: pointer;
	color: #ffffff;
	font-weight: 400;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.contact-info{
	text-align: center;
}

.contact-info p{
	line-height: 14px;
	font-size: 14px;
}

.alert-ok{
	padding: 10px;
	margin:10px;
	border-radius: 2px;
	border:solid 1px #070;
	background-color: rgba(47,119,0,.2);
	color: #070;
	margin:auto;
	width: 550px;
}

.single-image{
	width: 45%;
	float: 	left;	
}

.single-image img{
	width: 100%;
	max-width: 100%;
}

.single-info{
	width: 45%;
	float: 	right;
}

.single-info a{
	color: #ff8000;
}

/* footer */
footer{
	text-align: center;
	font-size: 14px;
	font-weight: 300;
	background-color: #077000;
	padding: 20px 0;
	color: rgba(255,255,255,.7);
}

footer a{
	color: #ffffff;
	text-decoration: none;
}