/*************************************************************
BODY STYLE
*************************************************************/

/*
BLACK : #191919
GREEN : #35dba9

*/

@charset "utf-8";

@import url(fonts.css);

* {

	outline: none;

	box-shadow: none;

	-webkit-tap-highlight-color: transparent;

	box-sizing: border-box;

}

body {
	width: 100vw;
	background-color:#191919;	
	margin: 0px;
	padding: 0px;
	overflow-x:hidden;
}

h1{
	font-family: IRANSans;
	font-weight: 200;
	color: #35dba9;
	direction: rtl;
	margin:0;
}
h2 {
	font-family: IRANSans ;
    font-size: 50px;
    font-weight: 500;
    color:#35dba9;
	direction: rtl;
	margin:0;
}
h3 {
	font-family: IRANSans ;
    font-size: 50px;
    font-weight: 500;
    color:#35dba9;
	direction: rtl;
	margin:0;
}
h4 {
	font-family: IRANSans ;
    font-size: 50px;
    font-weight: 500;
    color:#35dba9;
	direction: rtl;
	margin:0;
}

p {
	text-align: justify;
	width:80%;
	color: #FFF;
	font-size: 18px;
	margin:0 auto;
	font-family: IRANSans ;
	direction: rtl;
	margin:0;
}

a {
	font-size: 16px;
	color:#35dba9;
	text-decoration: none;
	font-family: IRANSans ;
	direction: rtl;
	margin:0;
}



li , input , textarea{
	font-family: IRANSans ;
}

/*************************************************************
SCROLLBAR STYLE
*************************************************************/

::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(255,255,255,0.3);
	border-radius: 5px;
	background-color: #f1f1f1;
	display: none;
}

::-webkit-scrollbar
{
	width: 12px;
	height: 12px;
	background-color: #FFF;
	display: none;
}

::-webkit-scrollbar-thumb
{
	border-radius: 2px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #ccc;
	display: none;
}


/*************************************************************
HEADER STYLE
*************************************************************/
#head{
	position: fixed;
	width: 100vw;
	height: 50px;
	z-index: 500;
	display: none;
}
#head img{
	width: 30px;
	height: 30px;
	margin-top: 10px;
	margin-left: 20px;
	margin-right: 20px;
	cursor: pointer;
}

@media screen and (orientation:portrait) {
#head{
	position: fixed;
	width: 100vw;
	height: 50px;
	z-index: 500;
	display: none;
}
#head img{
	width: 3vh;
	height: 3vh;
	margin-top: 10px;
	margin-left: 5vw;
	margin-right: 5vw;
	cursor: pointer;
}

}