@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700;1,800&family=Poppins:ital,wght@0,400;0,600;0,700;1,400;1,700&display=swap');

*{
	max-width: 100%;
	margin: 0;
	padding: 0;
}
body{
	background-color: #d5e0df;
}

img{
	max-width: 100%;
	height: auto;
}

/*  header  */

header{
	background-color: #030303;
	padding: 15px;
}

.menu-list{
	display: none;
}
.menu ul{
	list-style: none;
	display: flex;
	margin: 0;
	padding: 0;
	justify-content: flex-end;
	align-items: center;
}
.menu ul li{
	margin: 0 5px;
}
.menu ul li a{
	text-decoration: none;
	font-size: 16px;
	font-weight: 600;
	font-family: 'Poppins', sans-serif;
	text-transform: uppercase;
	color: #16c406;
	padding: 0 15px;	
}


.menu ul li a:hover{
	
	border-radius: 5px;
	color: #000;
	background-color: #16c406;
	transition-duration: .7s;
}

/*   section  */

.section{
	background-image: linear-gradient(to bottom, #030303, #060606, #080909, #0b0c0c, #1c1d1d, #2a2c2c, #3a3c3c, #5d6161, #838989, #abb4b3, #d5e0df);
	padding-top: 210px;
	padding-bottom: 240px;
}

.section h1{
	font-size: 48px;
	font-family:'Playfair Display', sans-serif;
	font-style: italic;
	color: #fff;
	text-align: center;
}
.section h1 span{
	font-size: 1.1em;
	font-style: italic;
	font-weight: 800;
	padding-bottom: 20px;
}
.section h5 {
	text-align: center;
	font-family:'Poppins', sans-serif;
	color: #fff;
	padding-bottom: 20px;
}
.btn-connect{
	border: 3px solid #16c406;
	border-radius: 20px;
	background-color: transparent;
	padding: 5px 25px;
	color: #fff;	
}

.btn-connect:hover{
	background-color:#16c406;
}

/*  about   */

.about{
	padding: 30px 0;
}
.profile{
	display: flex;
	flex-wrap: wrap;
	text-align: center;
	justify-content: space-evenly;
	align-items: center;
	margin-bottom: 10px;
	
}
.profile img{
	width: 260px;
	height: 260px;
	border-radius: 50%;
	box-shadow: 0 0 15px #16c406;
	margin: 15px;

}

.profile .p-des{
	margin: 15px;
}

.skills{
  width: 600px;
  max-width: 60%;
  padding: 12px 0;
  margin: auto;
}
.skill-name{
  font-size: 18px;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  margin: 10px 0;
}

.skill-bar{
  height: 15px;
  background: #282828;
  border-radius: 3px;
}

.skill-per{
  height: 15px;
  background: #16c406;
  border-radius: 3px;
  position: relative;
  animation: fillBars 5s 1;
}

.skill-per::before{
  content: attr(per);
  position: absolute;
  padding: 3px 5px;
  background: #f1f1f1;
  border-radius: 4px;
  font-size: 10px;
  top: -35px;
  right: 0;
  transform: translateX(50%);
}

.skill-per::after{
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #f1f1f1;
  top: -20px;
  right: 0;
  transform: translateX(50%) rotate(45deg);
  border-radius: 2px;
}

@keyframes fillBars{
  from{
    width: 0;
  }
  to{
    width: 100%;
  }
}

/*   services   */
.services{
	padding: 30px 0;
}
.info{
	text-align: center;
	margin: 15px auto;
	width: 300px;
	height: 180px;
	border-radius: 5px 20px;
	box-shadow: 0 0 10px #16c406;
	padding: 15px 10px;

}

.info:hover{
	border: 1px solid #030303;
	transform: scale(1.1);
	transition-duration: 1s;
}

.info span i{
		font-size: 3em;
		color: #030303;
		padding: 10px 0;
}

.info span i:hover{
		color: #16c406;
		transform: translateY(10px);
		transition-duration: .8s;
}


/*  works */
.works{
		padding: 30px 0;
}
.work-project{
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(350px, auto));
		justify-content: center;
		align-items: center;
}
.project{
		width: 350px;
		height: auto;
		padding: 5px;
		border-radius: 10px;
		margin: 20px;
		background: linear-gradient(to top, #16c406 30%, #030303 90%);
		transform: skew(-5deg);
}

.project:hover{
		transform: skew(0deg);
		transition-duration: .8s;
}
.project .img-info{
		text-align: center;
		padding: 5px 0;
}

/*   footer  */
.footer{
	background-image: linear-gradient(to top, #060606,#101010, #353535, #67686c, #9ba2a5, #d5e0de);
	color:  #16c406;
	padding: 10px 25px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: space-between;


}
.footer a{
	text-decoration: none;
	color: #16c406;
}

.social ul{
	margin: 0;
}

.social ul span a{
	font-size: 25px;
	color: #16c406;
	padding-left: 20px;
}
.social ul span :hover{
	transform: rotate3d(0, .8, 1, 40deg);
	transition-duration: .5s;
}

/*   scrool arrow   */

.top-button{
	position: fixed;
	bottom: 50px;
	right: 8px;	
}
.top-button span{
	font-size: 25px;
	color: green;
}



/*   responsive css  */

@media(max-width: 767px){

	header{
		position: relative;
	}
	.menu-list{
		display: block;
		text-align: right;
	}
	.menu-list span{
		color: #16c406;
		font-size: 20px;
	}
	.menu{
		background-color: transparent;
		position: absolute;
		width: 100%;
		top: 100%;
		right: 0;
		z-index: 9;
		display: none;
	}
	.menu ul{
		display: block;
	}
	.menu ul li a{
		display: block;
		padding: 8px 20px;
	}
	.section h1 span{
		font-size: 50px;
	}
}

@media(max-width: 575px){

	.project{
		width: 260px;
		height: auto;
		margin: 15px auto;
	}
	.footer{
		display: block;
	}
}
