@import url('https://fonts.googleapis.com/css?family=Montserrat');

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	text-decoration: none;
	list-style: none;
	font-family: 'Montserrat', sans-serif;
}

p{
	margin-bottom: 15px;
	font-size: 14px;
	line-height: 22px;
	color: #8D8D8D;
}

img{
	display: block;
	width: 100%;
}

.primary_text{
	font-size: 16px;
	text-transform: uppercase;
	color: #5B5B5B;
	margin-bottom: 25px;
	text-align: center;
}

.subprimary_text{
	font-size: 32px;
	text-transform: capitalize;
	margin-bottom: 25px;
	text-align: center;
}

.secondary_text{
	font-size: 24px;
	text-transform: uppercase;
	color: #262626;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: 25px;
	text-align: center;
}

.btn_green a,
.btn_white a{
	display: block;
    margin: 35px auto 0;
    border-radius: 50px;
	text-align: center;
	text-transform: capitalize;
	width: 180px;
	padding: 12px 15px;
}

.btn_green a{
	background: #81C645;
	color: #fff;
}

.btn_white a{
	background: #fff;
	color: #81C645;
}

.btn_green a:hover {
    background: #7ae31e;
}

.btn_white a:hover{
	background: #f5f5f5;
}

.center{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.gutter{
	padding: 5% 8%;
}

/* Header */
.header{
	background: url('images/an.jpg') no-repeat center center;
	background-size: cover;
	width: 100%;
	height: 550px;
	position: relative;
}

.header_content .title{
	margin-bottom: 25px;
	font-size: 46px;
	text-transform: capitalize;
}

.header_content,
.header_content p{
	text-align: center;
	color: #fff;	
}

.header_content .title span{
	color: #81C645;
}

/* Services */
.services,
.ourteam,
.pricingtable{
	text-align: center;
}

.service_wrapper,
.ourteam_wrapper,
.pricingtable_wrapper{
	margin-top: 50px;
	display: flex;
	justify-content: space-around;
}

.service_wrapper .service_item,
.ourteam_wrapper .ourteam_item,
.pricingtable .pricingtable_item{
	width: 280px;
	margin: 0 15px;
}

.service_wrapper .service_item .icon{
	font-size: 52px;
	color: #81C645;
	margin-bottom: 25px;
}

/* Features */
.features{
	display: flex;
}

.features .feature_left,
.features .feature_right{
	width: 50%;
}

.features .feature_left img{
	width: 100%;
	height: 100%;
	display: block;
}

.features .feature_right{
	background: #81C645;
	color: #fff;
	padding: 60px;
}

.features .feature_right h4,
.features .feature_right h2{
	text-align: left !important;
	color:  #fff;
}

.features .feature_right .btn_white a{
	margin: 35px 0;
}

.features .feature_right ul li{
	margin: 15px 0;
	padding-left: 25px;
	position: relative;
}

.features .feature_right ul li:before{
	content: "\f058";
	font-family: "Font Awesome 5 Free";
	position: absolute;
	top:  0;
	left: 0;
}

/* ourteam */
.ourteam_wrapper .ourteam_img{
	margin-bottom: 20px;
}

.ourteam_wrapper h3{
	margin-bottom: 10px;
}

.ourteam_wrapper  span{
	display: block;
	margin-bottom: 10px;
	font-size: 12px;
}

/* Business */
.business{
	background: url('images/ac.png') no-repeat center;
	background-size: cover;
	width: 100%;
	height: 400px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.business .business_wrapper,
.business .business_wrapper p{
	color: #fff;
	text-align: center;
}

.business .business_wrapper{
	width: 70%;
}

/* Portfolio */
.portfolio .portfolio_top,
.portfolio .portfolio_bottom{
	display: flex;
	justify-content: space-around;
}

.portfolio .portfolio_item{
	width: 300px;
	height: auto;
	cursor: pointer;
	position: relative;
}

.portfolio img{
	width: 100%;
	height: 100%;
}

.portfolio .portfolio_top{
	margin-bottom: 25px;
}

.portfolio .portfolio_item:before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	background: #81C645;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.8s ease;
}

.portfolio .portfolio_item:after{
	content: "\f058";
	font-family: "Font Awesome 5 Free";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 52px;
	color: #fff;
	opacity: 0;
	transition: all 0.5s 0.1s ease;
}

.portfolio .portfolio_item:hover:before{
	transform: scale(1);
}


.portfolio .portfolio_item:hover:after{
	opacity: 1;
}

/* Contactus */
.contactus{
	background: #81C645;
	padding:  60px;
	text-align: center;
	color: #fff;
}

.contactus .fas{
	font-size: 52px;
	margin-bottom: 25px;
}

/* Pricingtable */
.pricingtable .pricingtable_item{
	padding: 30px;
	border:  3px solid #81C645;
}

.pricingtable h2{
	color: #81C645;
}

/* Footer */
.footer{
	background: #26242b;
	padding: 50px;
	text-align: center;
	color: #fff;
}

.social_media{
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
}

.social_media .icons{
	margin: 0 10px;
	background: #81C645;
	width: 50px;
	height: 50px;
	line-height: 50px;
	border-radius: 50%;
	cursor: pointer;
}

.social_media .icons:hover{
	background: #7ae31e;
}

/* Hamburger */
.hamburger{
	position: absolute;
	top: 25px;
	right: 25px;
	background: #81C645;
	color: #fff;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 18px;
}

.hamburger:hover{
	background: #7ae31e;
}

.navbar{
	position: absolute;
	top: 25px;
	left: 25px;
	background: #81C645;
	width: 180px;
	border-radius: 5px;
	padding: 25px;
	display: none;
}

.navbar ul li{
	margin: 15px 0;
	text-align: center;
}

.navbar ul li a{
	color: #fff;
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 2px;
	user-select: none;
}

.navbar ul li a:hover{
	color: #f5f5f5;
}

@media screen and (max-width: 768px){
	.service_wrapper,
	.ourteam_wrapper,
	.pricingtable_wrapper{
		flex-direction: column;
		align-items: center;
	}
	.service_wrapper .service_item,
	.ourteam_wrapper .ourteam_item,
	.pricingtable .pricingtable_item{
		margin: 25px 10px;
	}
	.features{
		flex-direction: column;
	}

	.features .feature_left,
	.features .feature_right{
		width: 100%;
	}
	.footer{
		padding: 5%;
	}
	.social_media .icons{
		margin: 0 5px;
	}
}