@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700;800;900&display=swap');

body{
	margin:0;
	line-height: 1.5;
	background-color: #3e3d3c;
	overflow: hidden;
   }
   body,
   input,
   textarea,
   button{
	   font-family: 'Raleway', sans-serif;
	   font-weight: 400;
   }
   
  
   *{
	   box-sizing: border-box;
	   margin:0;
   }
  
   .container{
	   max-width: 1170px;
	   margin:auto;
   }
   .row{
	display: flex;
	flex-wrap: wrap;
 }
.justify-content-between{
	justify-content: space-between;
}
.align-items-center{
	align-items: center;
}

/* preloader */
@keyframes ani01{
	0%{
		transform: rotate(0deg);
	}
	100%{
		transform: rotate(360deg);
	}
}
.preloader{
	position: fixed;
	left:0;
	top:0;
	right:0;
	bottom:0;
	background-color: #111111;
	z-index: 1099;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.6s ease;
 }
 .preloader.loaded{
 	visibility: hidden;
 	opacity:0;
 	z-index: -99;
 }
 .preloader .loader{
 	height: 30px;
 	width: 30px;
 	border:2px solid #FF9800;
 	border-right:2px solid transparent;
 	border-radius:50%;
 	animation: ani01 2s linear infinite;
 }
/* header */
.header{
	position: absolute;
	left:0;
	top:0;
	width: 100%;
	z-index:99;
	transition: all 0.5s ease;
}
.header.fixed{
	background-color: #ffffff;
	position: fixed;
}
.header .brand-name{
	padding:0 15px;
}
.header .brand-name a{
	text-decoration: none;
	font-size: 30px;
	color:#ffffff;
	text-transform: uppercase;
	font-weight: 900;
	letter-spacing:2px;
	transition: all 0.5s ease;
}
.header.fixed .brand-name a{
	color:#000000;
}
.header .nav-toggle{
	width: 40px;
	height: 34px;
	border:1px solid #ffffff;
	border-radius: 3px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.5s ease;
	display: none;
}
.header.fixed .nav-toggle{
	border-color: #000000;
 }
 .header .nav-toggle span{
	 height: 1px;
	 display: block;
	 width: 16px;
	 background-color: #ffffff;
	 position: relative;
	 transition: all 0.5s ease;
 }
 .header .nav-toggle span:before,
.header .nav-toggle span:after{
	content: '';
	position: absolute;
	left:0;
	top:0;
	height: 1px;
	width: 100%;
	background-color: #ffffff;
	transition: all 0.5s ease;
}
.header.fixed .nav-toggle span,
.header.fixed .nav-toggle span:before,
.header.fixed .nav-toggle span:after{
  background-color: #000000;
}
.header .nav-toggle span:before{
	transform:translateY(-6px);
}
.header .nav-toggle span:after{
	transform:translateY(6px);
}
.header .nav{
	padding:0 15px;
}
.header .nav ul{
	list-style: none;
	margin:0;
	padding:0;
}
.header .nav ul li{
	display: inline-block;
	margin-left: 30px;
}
.header .nav ul li a{
	text-decoration: none;
	font-size: 16px;
	font-weight: 600;
	color:#ffffff;
	padding:25px 0;
	display: block;
	transition: all 0.5s ease;
}
.header.fixed .nav ul li a{
	color:#000000;
  }
  .header.fixed .nav ul li a:hover,
  .header .nav ul li a:hover{
	  color:#FF9800;
  }
  @media(min-width: 768px){
	.header .nav{
		display: block!important;
	}
}
@media(max-width: 767px){
	.header{
		padding:7px 0;
		position: fixed;
	}
	.header .nav-toggle{
		display: flex;
		margin-right: 15px;
	}
	.header .nav{
 		width: 100%;
		background-color: #ffffff;
		padding:0;
		display: none;
	}
	.header.fixed .nav{
		border-top:1px solid #cccccc;
	  }
	.header .nav ul li{
		display: block;
		margin-right: 25px;
	}
	.header.fixed .nav ul li a,
	.header .nav ul li a{
		color:#000000;
		padding: 15px 0;
	}
}

/* home section */
.home-section{
	max-height: 100vh;
	background-image: url('../img/home-bg.jpg');
	background-size: 100% 100%;
	background-position: center;
	position: relative;
	z-index: 1;
 }
.home-section:before{
   content: '';
   position: absolute;
   box-sizing: border-box;
   left:0;
   top:0;
   right:0;
   bottom:0;
   background-color: #000000;
   opacity: 0.7;
   z-index: -1;
}
 
.home-section .row{
   min-height: 100vh;
   display: flex;
   justify-content: center;
}
.home-section .home-content{
    max-width: 100%;
   text-align: center;
}
.home-section .home-content h4{
   font-size:20px;
   color:#ffffff;
   margin:0;
}
.home-section .home-content h1{
   font-size: 40px;
   margin:0;
   color:#ffffff;
   text-transform: uppercase;
   font-weight: 900;
   letter-spacing: 10px;
}

.home-section .scroll-down{
   position: absolute;
   left: 50%;
   bottom: 30px;
   height: 30px;
   width: 30px;
   margin-left: -15px;
   animation:scrollDown 2s ease infinite;
}
@keyframes scrollDown{
  0%,20%,50%,80%,100%{
	  transform: translateY(0);
  }
  40%{
	  transform: translateY(-30px);
  }
  60%{
	  transform: translateY(-15px);
  }
}
.home-section .scroll-down img{
  width: 25px;
  display: block;
  margin:2px auto
}

/* Skills */

.skills-section {
 	min-height: 80vh;
	padding: 30px 15px;
   }
  .skills-section h2 {
	text-align: center;
 	font-size: 30px;
	color: #fff;
  }
  
  .skills-section .skillProgress {
	background-color: #fff;
	width: 100%;
	height: 30px;
	border-radius: 10px;
  }
  .skills-section .skillProgress div {
	height: 100%;
	background-color:#FF9800;
	border-radius: 10px;
	width: 0%;
	transition: 1s width;
  }
  .skills-section .skillProgress span{
float: right;
margin-right: 15px;
color: #fff;
  }
  
  .skills-section .skill {
	  margin: 20px ;
   }
  .skills-section .skillName {
	width: 20%;
	text-align: center;
	color: #fff;

  }

  /* Work Section */

.work-section{
	 min-height: 100vh;
	 padding: 15px;
}
 
.work-section .items{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.work-section .section-title {
    width: 100%;
    text-align: center;
	font-size: 30px;
	color: #fff;
	margin-bottom: 20px;

}
.work-section .work-item{
 	max-width: 50%;
	padding:15px;
}
.work-section .work-item-inner img{
	height: 40vh;
	width: 100%;
	display: block;
	transform: scale(1.1);
	transition: all 0.5s ease;
}
.work-section .work-item-inner:hover img{
	filter: grayscale(100%);
	transform: scale(1);
}
.work-section .work-item-inner{
	position: relative;
	cursor: pointer;
	overflow:hidden;
}

.work-section .work-item-inner .overlay{
	position: absolute;
	left:0;
	top:0;
	height: 100%;
	width: 100%;
	padding:15px;
	display: flex;
	align-items: flex-end;
	transition: all 0.5s ease;
	background-color: rgba(0,0,0,0.6);
	opacity:0;
	
}
.work-section .work-item-inner:hover .overlay{
	opacity:1;
}
.work-section .work-item-inner .overlay h4{
	color:#ffffff;
	font-size: 20px;
	margin:0;
	transform: translateX(30px);
	transition: all 0.5s ease;
	margin: auto;
}
.work-section .work-item-inner:hover .overlay h4{
	transform: translateX(0);
}
 

/* Contact Section */

 
  .contact-section{
	  max-height: 100vh;
	  padding: 15px;
  }
  .contact-section .section-title{
	  text-align: center;
padding-top: 40px;
margin-bottom: 15px;  }
  .contact-section .section-title h1{
	  color:#fff;
	  font-size: 30px;
  }
  
  
   
  .contact-section .contact-info{
  display: flex;
  justify-content: space-around;
   max-width: 100%;
   }
  .contact-section .contact-info .info-item{
	   
	  max-width: 50%;
	  text-align: center;
	  
  }
  .contact-section .contact-info .info-item h5{
	  font-size: 20px;
	  font-weight: 600;
	  margin:0;
  }
  .contact-section .contact-info .info-item p{
	  font-size: 20px;
	  margin:0;
	  color:#fff;
  }
  
  .contact-section .social-links{
   display: flex;
   justify-content:center;
	  max-width: 100%;
	  padding:40px 0px;
	  
  }
  .contact-section .social-links a{
	  text-decoration: none;
	  display: inline-block;
	  margin:0 5px;
  }
  .contact-section .social-links a img{
	  width: 28px;
	  display:block;
	  transition: all 0.5s ease;
  }
  .contact-section .social-links a:hover img{
opacity: .5;
}

@media(max-width: 600px){
	.contact-section .contact-info{
		display: block;
margin: auto;	
	}
	.contact-section .contact-info .info-item{
	   
		   margin: 20px auto;
		
	}
	}
