@charset "UTF-8";
/* CSS Document */

	
	


*{
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}

body{
	font-family: 'Vazir', Arial, sans-serif;
	font-weight:normal;
	}
nav {
	
    /* background-color: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
	right: 0;
	background-color: black;
    transition: 0.2s ease-in all;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0);
    z-index: 9999; */


position: fixed;
	display: flex;
	justify-content:space-around;
	align-items: center;
width: 100%;
height: 10%;
	background: #000000;

	color: aliceblue;
	z-index: 9999;
}




.logo{
	/* font-family: 'Poppins', sans-serif; */

	
	font-family: 'Vazir';
	font-size: 16px;
	letter-spacing: 3;
	color:#f68b1f;
	transition:   0.5s ease-in;
	z-index: 200000;
}

.pntitle{

	font-weight: bold;

	font-size: 16px;
	letter-spacing: 3;
	color:#f68b1f;
	transition:   0.5s ease-in;
	z-index: 200000;
	
}
.logo:hover{
	

	
	
	
	color: whitesmoke;
	transition:   0.5s ease-out;
	cursor: pointer;
}

.nav-links{
	display: flex;

	
	justify-content: space-around;
		width: 60%;
 

	
	
}

.nav-links li {
	
	list-style: none;
}

.nav-links a {

	color: aliceblue;
	padding: 6px;
	border-radius: 10px;
	text-decoration: none;
	letter-spacing: 1px;
	font-size: 12px;
	transition:   0.3s ease-in;
	
	
	
}

.nav-links a:hover {

	color:#f68b1f;
	


	text-decoration: none;

	
	transition:  0.7s ease-in;
	
	
}


.burger{
	display: none;
	cursor: pointer;
}

.burger div{
	width: 25px;
	height: 3px;
	background-color:white;
	margin: 5px;
	
}
	.subTitle{
		position: relative;
	top: 230px;
	width: 100%;
	text-align: center;
	font-size: 4vw;

	color: aliceblue;	

	text-shadow: 2px 2px 4px #000000;
	
}


.mainTitle {
	position: relative;
	top: 200px;
	width: 100%;
	text-align: center;
	font-size: 8vw;
	color: aliceblue;
	transition: 1s ease-in;
	font-family: 'Vazir', Arial, sans-serif;
font-weight:normal;
	text-shadow: 4px 4px 2px #000000;
}





@media screen and (max-width:1024px){
	
	.nav-links{
		
		width: 65%;
	}
	



}
@media screen and (max-width:768px){
	
	
	body{
		
		overflow-x: hidden;
	}
	
	.nav-links{
		position: absolute;
		right: 0px;
		height: 92vh;
		top: 8vh;
		background: #000000;
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 100%;
		transform: translateX(100%);
		
	}
	
	.nav-links li{
		
		opacity: 0;
	}
	
	
	.burger{
		display: block;
	}
	.subTitle{
		position: relative;
	top: 230px;
	width: 100%;
	text-align: center;
	font-size: 18px;
	
	color: aliceblue;	

	
}


.mainTitle {
	position: relative;
	top: 200px;
	width: 100%;
	text-align: center;
	font-size: 70px;
	color: aliceblue;
	transition: 1s ease-in;
	
	
}
	
}
.nav-active{
	transform: translateX(0%);
}



@keyframes navLinkFade{
	
	from{
		opacity: 0;
		transform: translateX(50px);
	}
	to{
		opacity: 1;
		transform: translateX(0px);
		
	}
	
}

@media screen and (max-width:300px){
	

}

