*{
	padding: 0;
	margin: 0;
	font-family: 'Josefin Sans', sans-serif;
	box-sizing: border-box;
}
html{
	scroll-behavior: smooth;
}
.Home{
	height: 100vh;
	width: 100%;
	background-image: url(../img/background.jpg);
	background-size: cover;
	background-position: center;
}
nav{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 45px;
	padding-left: 8%;
	padding-right: 8%;
}
.logo{
	color: white;
	font-size: 35px;
	letter-spacing: 1px;
	cursor: pointer;
}
span{
	color: #f9004d;
}
nav ul li{
	list-style-type: none;
	display: inline-block;
	padding: 10px  25px;
}
nav ul li a{
	color: white;
	text-decoration: none;
	font-weight: bold;
	text-transform: capitalize;
}
nav ul li a:hover{
	color: #f9004d;
	transition: .4s;
}
.btn{
	background-color:#f9004d;
	color: white;
	text-decoration: none;
	border: 4px solid transparent;
	font-weight: bold;
	padding: 10px 25px;
	border-radius: 30px;
	transition: transform .4s; 
}
.btn:hover{
	transform: scale(1.2);
}
.content{
	position: absolute;
	top: 50%;
	left:8%;
	transform: translateY(-50%);
}
h1{
	color: white;
	margin: 20px 0px 20px;
	font-size: 75px;
}
h3{
	color: white;
	font-size: 25px;
	margin-bottom: 50px;
}
h4{
	color: #fcfc;
	letter-spacing: 2px;
	font-size: 20px;
}

.about{
	width: 100%;
	padding: 100px 0px;
	background-color: #191919;
}
.about img{
	height: auto;
	width: 430px;
	border-radius: 1.39rem;
	box-shadow: 6px 6px 10px #f9004d;
}
.about-text{
	width: 550px;
}
.main{
	width: 1130px;
	max-width: 95%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-around;
}
.about-text h2{
	color: white;
	font-size: 75px;
	text-transform: capitalize;
	margin-bottom: 20px;
}
.about-text h5{
	color: white;
	letter-spacing: 2px;
	font-size: 22px;
	margin-bottom: 25px;
	text-transform: capitalize;
}
.about-text p{
	color: #fcfc;
	letter-spacing: 1px;
	line-height: 28px;
	font-size: 18px;
	margin-bottom: 45px;
}
button{
	background-color:#f9004d;
	color: white;
	text-decoration: none;
	border: 2px solid transparent;
	font-weight: bold;
	padding: 13px 30px;
	border-radius: 30px;
	transition: .4s; 
}
button:hover{
	background-color: transparent;
	border: 2px solid #f9004d;
	cursor: pointer;
}

.My_carrer{
	background: #101010;
	width: 100%;
	padding: 40px 0px;
}
.title h2{
	color: white;
	font-size: 75px;
	margin: 30px auto;
	text-align: center;
}
.box{
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 400px;
}
.card{
	height: 350px;
	width: 335px;
	padding: 20px 35px;
	background: #191919;
	border-radius: 20px;
	margin: 60px;
	position: relative;
	overflow: hidden;
	text-align: center;
}
.card i{
	font-size: 50px;
	display: block;
	text-align: center;
	margin: 25px 0px;
	color: #f9004d;

}
h5{
	color: white;
	font-size: 23px;
	margin-bottom: 15px;
}
.pra ul{
	
	color: #fcfc;
	
	font-size: 16px;
	line-height: 40px;
	margin-bottom: 25px;
	
}


.Skills{
	padding: 50px;
	width: 100%;
	height: 500px;
	background: #191919;
	display: flex;
	align-items: flex-start;
	flex-direction: row;
	justify-content: center;
}

.Skills p{
	position: absolute;
	color: white;
	font-size: 75px;
	font-weight: bold;
	margin-bottom: 80px;
	
}





.contact{
	position: relative;
	width: 100%;
	height: 400px;
	background: #101010;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	
}
.contact p:nth-child(1){
	font-size: 30px;
	color: white;
	margin-bottom: 20px;
	font-weight: bold;
}
.contact p:nth-child(2){
	color: white;
	font-size: 17px;
	width: 500px;
	text-align: center;
	line-height: 26px;
}
.social{
	display: flex;
	
}
.social a{
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	background:  #f9004d;
	border-radius: 50%;
	margin: 22px 10px;
	color: white;
	text-decoration: none;
	font-size: 20px;
	
}
.social a:hover{
	transform: scale(1.3);
	transition: .3s;
}
.end{
	position: absolute;
	color:#f9004d;
	bottom: 35px;
	font-size: 14px; 
}
















::selection{
	color: #fff;
	background: #f9004d;
  }
  .skill-bars{
	padding: 25px 30px;
	margin:80px;
	width: 600px;
	background: #fff;
	box-shadow: 5px 5px 20px rgba(0,0,0,0.2);
	border-radius: 10px;
  }
  .skill-bars .bar{
	margin: 20px 0px;
  }
  .skill-bars .bar:first-child{
	margin-top: 0px;
  }
  .skill-bars .bar .info{
	margin-bottom: 5px;
  }
  .skill-bars .bar .info span{
	font-weight: 500;
	font-size: 17px;
	opacity: 0;
	animation: showText 0.5s 1s linear forwards;
  }
  @keyframes showText {
	100%{
	  opacity: 1;
	}
  }
  .skill-bars .bar .progress-line{
	height: 10px;
	width: 100%;
	background: #f0f0f0;
	position: relative;
	transform: scaleX(0);
	transform-origin: left;
	border-radius: 10px;
	box-shadow: inset 0 1px 1px rgba(0,0,0,0.05),
				0 1px rgba(255,255,255,0.8);
	animation: animate 1s cubic-bezier(1,0,0.5,1) forwards;
  }
  @keyframes animate {
	100%{
	  transform: scaleX(1);
	}
  }
  .bar .progress-line span{
	height: 100%;
	position: absolute;
	border-radius: 10px;
	transform: scaleX(0);
	transform-origin: left;
	background: #f9004d;
	animation: animate 1s 1s cubic-bezier(1,0,0.5,1) forwards;
  }
  .bar .progress-line.python span{
	width: 95%;
  }
  .bar .progress-line.R span{
	width: 70%;
  }
  .bar .progress-line.MySQL span{
	width: 85%;
  }
  .bar .progress-line.Pandas span{
	width: 65%;
  }
  .bar .progress-line.Java span{
	width: 45%;
  }
  .bar .progress-line.html span{
	width: 98%;
  }
  .bar .progress-line.css span{
	width: 90%;
  }
  .bar .progress-line.php span{
	width: 70%;
  }
  .bar .progress-line.flutter span{
	width: 55%;
  }
  .bar .progress-line.swift span{
	width: 35%;
  }

  .progress-line span::before{
	position: absolute;
	content: "";
	top: -10px;
	right: 0;
	height: 0;
	width: 0;
	border: 7px solid transparent;
	border-bottom-width: 0px;
	border-right-width: 0px;
	border-top-color: #000;
	opacity: 0;
	animation: showText2 0.5s 1.5s linear forwards;
  }
  .progress-line span::after{
	position: absolute;
	top: -28px;
	right: 0;
	font-weight: 500;
	background: #000;
	color: #fff;
	padding: 1px 8px;
	font-size: 12px;
	border-radius: 3px;
	opacity: 0;
	animation: showText2 0.5s 1.5s linear forwards;
  }
  @keyframes showText2 {
	100%{
	  opacity: 1;
	}
  }
  .progress-line.python span::after{
	content: "95%";
  }
  .progress-line.R span::after{
	content: "70%";
  }
  .progress-line.MySQL span::after{
	content: "85%";
  }
  .progress-line.Pandas span::after{
	content: "65%";
  }
  .progress-line.Java span::after{
	content: "45%";
  }
  .progress-line.html span::after{
	content: "98%";
  }
  .progress-line.css span::after{
	content: "90%";
  }
  .progress-line.php span::after{
	content: "70%";
  }
  .progress-line.flutter span::after{
	content: "55%";
  }
  .progress-line.swift span::after{
	content: "35%";
  }




  #scroll {
    position:fixed;
    right:10px;
    bottom:10px;
    cursor:pointer;
    width:50px;
    height:50px;
    background-color: #f9004d;
    text-indent:-9999px;
    display:none;
    -webkit-border-radius:5px;
    -moz-border-radius:5px;
	border-radius:5px;
	z-index: 2;
}
#scroll span {
    position:absolute;
    top:50%;
    left:50%;
    margin-left:-8px;
    margin-top:-12px;
    height:0;
    width:0;
    border:8px solid transparent;
    border-bottom-color:#ffffff
}
#scroll:hover {
    background-color:#e74c3c;
    opacity:1;
    filter:"alpha(opacity=100)";
    -ms-filter:"alpha(opacity=100)";
}









  


#Responsive{
	display: none;
	width: 48px;
	height: 48px;
	background-size: 37px;
	font-size: 25px;
	text-align: center;
	color: white;
	line-height: 50px;
	
}

@media screen and (max-width: 768px){
	*{
		margin: 0;
	}
	#Responsive{
		display: inline-block;
		background-color: #e74c3c;
		border-radius: 0.99rem;
	}
	nav ul, nav:active ul{
		display: none;
		position: absolute;
		z-index: 1000;
		padding: 10px;
		background: #f25d8a;
		right: 10px;
		top: 30px;
		border: 1px solid #f0f0f0;
		border-radius: 8px;
		width: 43%;
		
	}
	nav:hover ul{
		display: block;
		
	}
	nav li{
		text-align: center;
		width: 100%;
		padding: 10px 0;
	}
	nav li a{
		text-align: center;
		display: inline-block;
	}
	.about{
		width: 100%;
	
		padding: 100px 0px;
		background-color: #191919;
		text-align: center;
	}
	.about img{
		display: none;
	}
	
	







	.My_carrer{
		background: #101010;
		width: 100%;
		
	}
	.title h2{
		color: white;
		font-size: 75px;
		text-align: center;
	}
	.box{
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		min-height: 400px;
	}
	
	.Skills p{
	position: absolute;
	color: white;
	font-size: 75px;
	font-weight: bold;
	
	}
		
	.Skills{
		
		padding: 80px;
		height: 800px;
		background: #191919;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	
	.skill-bars{
		margin: 60px;
		position: relative;
		width: 400px;
		background: #fff;
		box-shadow: 5px 5px 20px rgba(0,0,0,0.2);
		border-radius: 10px;
		align-items: center;
		flex-direction: column;
		align-items: center;
		justify-content: center;

	  }
	  .contact p:nth-child(2){
		color: white;
		font-size: 17px;
		width: 80%;
		text-align: center;
		line-height: 26px;
	}
	  
	
	
	
}