*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
	text-decoration: none;
}
body{
	background: #ebd69b;
}
	/* overflow-x: hidden;
	color: #fff;
}


/* ================== Background image Section ====================== */
#header{
    width: 100%;
    height: 100vh;
    background-image: url(image.jpg);
    background-size: cover;
    background-position: center ;
    overflow: none;
}

/* ============================ End of Background image Section ===================== */
.main-width{
	width: 1281px;
	max-width: 95%;
	margin: 0 auto;
	padding: 0px 20px;
}
/* .hero{

	width: 100%;
	height: 100%;
	min-height: 100vh;
    background : linear-gradient(rgba(0,0,0,0.5),rgba(0, 0, 0, 0.5)),url("image.jpg");
	background-size: cover;
	background-position: center;
	position: relative;
} */
header{
	padding: 40px 0 30px;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
}
.logo i{
	height: 55px;
	width: 55px;
	background: transparent;
	border: 2px solid #2ecc71;
	color:  #2ecc71;
	border-radius: 50%;
	display: inline-flex;
	align-items:center;
	justify-content: center;
	font-size:20px;
	cursor: pointer;
}
nav .hamb{
	width: 35px;
	height: 24px;
	right: 3%;
	top:60px;
	z-index: 5;
	background:transparent;
	position: absolute;
	cursor: pointer;
	display: none;
}
nav .hamb span{
	display:block ;
	background: #2ecc71;
	width: 100%;
	height: 3px;
	transition: .3s;
	transition-property: transform,opacity;
}
nav .hamb span:nth-child(2){
	margin: 7px 0px;
}
nav .nav-list{
	list-style: none;
}
nav .nav-list li{
	display: inline-block;
}
nav .nav-list li a{
	display: inline-block;
	color: #eee;
	margin-left: 55px;
	font-size: 15px;
	font-weight: 600;

}
nav  .nav-list li:not(:last-child) a:hover{
	color: #2ecc71;
	transition: .4s;
}
nav .nav-list li.btn a{
	display: inline-block;
	background: transparent;
	border: 2px solid #2ecc71; 
	height: 35px ; width:140px;
	padding: 9px 28px;
	border-radius: 30px;
	line-height: 1.3;
	color: #2ecc71;
	font-weight: 500;
}
nav .nav-list li.btn:hover a{
	background: #2ecc71;
	color: white;
	border: 2px solid transparent;
	transition: .4s ;
}
.container{
	padding-top: 190px ;
}
.container .hero-text{
	margin-bottom: 40px;
}
.container .hero-text h1{
	color: white;
	font-size: 47px;
	font-weight: 900;
	line-height: 1.2;
	margin: 20px 0px 20px;
}
span{
	color: #2ecc71;
}
.container .hero-text h3{
	color: #eee;
	font-weight: 400;
	font-size: 17px;
}
.container .hero-text p{
	width: 440px;
	max-width: 100%;
	color: #eee;
	font-size: 15px;   
	line-height: 1.5;
	margin-bottom: 30px;
}
.social a{
	width: 37px;
	height: 37px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 17px;
	color: #eee;
	cursor: pointer;
	margin-right: 20px;
	background-color: rgba(255, 255, 255, 0.1);
	margin-bottom: 35px;
}
.social a:hover{
	transform:scale(1.1);
	background: #2ecc71;
	transition: .4s;
}
.container .hero-text button{
	color: #eee;
	background: #2ecc71;
	font-size:16px;
	font-weight: 500;
	line-height: 24px;
	padding: 8px 30px;
	border: 2px solid #2ecc71;
	border-radius: 30px;
	cursor:pointer;

}
.container .hero-text button:hover{
	background: transparent;
	border: 2px solid #2ecc71;
	color: #2ecc71;
	transition: .4s;
}

/* ==================ABOUT ===================== */
.about{
    padding: 2px 0;
	margin-top: 2px;
}
.row{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

}
.about-col-1{
    flex-basis: 35%;
}
.about-col-1 img{
width: 100%;
border-radius: 50px;
padding: 0px 20px 100px  50px;

}
.about-col-2{
    flex-basis: 60%;
}
.sub-title{
    font-size:35px;
    font-weight: 900;
    line-height: 1.0;
    margin-bottom: 30px;
    color: #d89610;
    /* text-transform: uppercase; */
    position: relative;
    display: inline-block;
    padding-bottom:2px;
    /* border-bottom: 2px solid #0baa1d; */
    margin-bottom: 30px;
    margin-top: 3px; 
}

.tab-titles{
    display: flex;
    margin: 20px 0 40px;
	
}
.tab-links{
    margin-right: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor:pointer;
    position: relative;
	color: #ffffff;

}
.tab-links::after{
	content:'';
	width: 0;
	height: 3px;
	background-color: #d89610;
	position: absolute;
	left: 0;
	bottom: -8px;
	transition: 0.5s;

}
.tab-links.active-link::after{
	width: 50%;
}
.tab-contents{
	list-style: none;
	margin: 10px 0;
	color: #ffffff;

}
.tab-contents ul li span{
	color: #0a4248;
    font-weight: 600;
	font-size: 14px;
}
.tab-contents{
	display: none;
}
.tab-contents.active-tab{
	display: block;
}


/* ============ End of About Section================ */



/* ================= Start of Services part====================
*/
#services{
	padding: 3px 50px;
    background-color: #b5c5cf;

}
.services-list{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr) );
	grid-gap: 40px;
	margin-top:50px;
}
.services-list div{
	background: #949090;
	padding: 40px;
	font-size: 13px;
	font-weight: 300;
	border-radius:10px;
}
.services-list div i{
	font-size: 50px;
	margin-bottom:30px;
	color: #ffffff;
}
.services-list div h2{
	font-size: 30px;
	font-weight: 900;
	margin-bottom: 15px;
	color: white;
}
.services-list div a{
	text-decoration: none;
	color: #1717c1;
	font-size: 12px;
	margin-top: 20px;
	display: inline-block;
}
.services-list div:hover{
	background: #ff004f;
    transition: 0.5s;
	transform: translate(-10px);
}
/* ============== End of service part================ */

/* ================= Start of my works================= */



#portfolio{
	padding: 50px;
	background-color: #24433d;
	margin-top: 50px;
	margin-bottom: 50px;
}
.work-list{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr) );
	grid-gap: 40px;
	margin-top: 50px;
	margin-bottom: 50px;
	margin-left: 50px;
	padding: 50px --100px;
 }
	 .work{
		border-radius: 10px;
		position: relative;
		overflow: hidden;
	 }
	 .work img{
	width: 100%;
	border-radius: 50px;
	display: block;
	padding: 30px 20px;
	 }
	 .layer{
		width: 100%;
		height: 100%;
		background: linear-gradient(rgba(0,0,0,0.6), #ff004f);
		border-radius: 10px;
		position: absolute;
		top: 0;
		bottom: 0;
		overflow: hidden;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		padding: 0 40px;
		opacity: 0;
		transition: 0.5s;
		transform: translateY(-100%);
		color: white;
	 }

.layer h3{
	font-weight: 500;
	margin-top: 20px;

}
.layer a{
	text-decoration: none;
    color: #fff;
    font-size: 18px;
    margin-top: 20px;
    display: inline-block;
	line-height: 60px;
	background: #fff;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	text-align: center;

}
.work:hover img{
	transform:scale(1.2) ;
}
.work:hover .layer{
	height: 100%;

}
.btn1{
	display: block;
	margin: 50px auto;
	width:fit-content;
	border: 3px solid#257293;
	padding: 14px 40px;
	border-radius: 6px;
	text-decoration: none;
	color: #fff;
	transition: background 0.5s;
	
}
.btn1:hover{
	background: #0ca2a7;
}

/* ================= End of my works================= */



/* ======================Staart of contact part===================== */
/* start of github comment
#contact{
	background-color: #ebd69b;
	margin-top: 2750px;
	padding: 30px 90px  20px;
}
.container-left{
	flex-basis: 35%;

}
.contact-right{
	flex-basis: 60%;
}
.contact-left p{
	margin-top:30px ;
}
.contact-left p i{
	color: #ff004f;
	margin-right: 20px;
	font-size: 25px;
}
.social-icons{
	margin-top: 30px;

}
.social-icons a{
	width: 37px;
	height: 37px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 17px;
	color: #eee;
	cursor: pointer;
	margin-right: 20px;
	background-color: #ababab;
	margin-bottom: 35px;
	transition: 0.5s;
}
/* end of git hub comment  */ */







	/* text-decoration: none;
	font-size: 30px;
	margin-right: 15px;
	background-color: rgba(255, 255, 255, 0.1);
	display: inline-block;
	transition: 0.5s;
} */







/* start of github comment

.social-icons a:hover{
	color:#ff004f;
	transform: translateY(-5px);
}
.btn.btn2{
	display: inline-block;
	background: transparent;
	border: 2px solid #fff; 
	height: 40px ; width:160px;
	padding: 2px 29px;
	border-radius: 30px;
	line-height: 1.3;
	color: #fff;
	font-weight: 500;
	background: #ff004f;
	margin-top: 4px;
}
.btn.btn2 a:hover{
	transform:scale(1.1);
	background: #2ecc71;
	transition: .4s;
}
.contact-right form{
	width: 100%;

}
form input , form textarea{
	width: 100%;
	border: 0;
	outline: none;
	background: #262626 ;
	padding: 15px;
	margin: 15px 0;
	color: #fff;
	font-size: 18px;
	border-radius: 6px;
}
form btn2{
	padding: 14px 60px;
	margin-top:20px;
	font-size: 18px;
	cursor: pointer;
} 
end of github comment

 */
/* ================== Copyright footer section============== */
/* .buttom{
	margin-top: 243px;
	padding-bottom: 400px;

}
.buttom p{
	color: #eee;
	letter-spacing: 2px;
	font-size: 15px;
}  */
.buttom{
	width: 100%;
	text-align: center;
	padding: 25px 0;
	background-color: #262626;
	font-weight: 300;
	margin-top: 50px;

}

/* ======================= End of Copyright Footer Section =================== */


/* ============================CSS for small screens=========================== */
@media only screen and (max-width: 900px){
	#header{
		background-image: url(image3.jpg);
	}
	nav .hamb{
		display: initial;
	}
	.click{
		top: 46px;
	}
	.click span{
		position: absolute;
		margin-top: 12px;
	}
	.click span:first-child{
		transform: rotate(-40deg);
	}
	.click span:nth-child(2){
		opacity: 0;
		margin: 0;	
	}
	.click span:last-child{
		transform: rotate(40deg);
		top: 0;
	}
	nav .nav-list{
		position: absolute;
		top: 90px;
		right: -65%;
		bottom: 0;
		width: 60%;
		height: 50%;
		background: black;
		z-index: 2;
		padding: 6% 9%;
		transition: .3s right;
		border-radius: 10px ;
	}
	nav .nav-list li{
		display: block;
	}
	nav  .nav-list li a{
		display: block;
		text-align: center;
		font-size: 18px;
		font-weight: 400;
		margin-left: 0;
		margin-bottom: 40px ;
	}
	nav .nav-list li.btn a{
		position: absolute;
		bottom: 0%;
		right: 20%;
		left: 20%;
		padding: 7px 15px;
		font-size:  14px;
	}
	nav .nav-list.open{
	right: 0;	
	}
}




  
