/* CSS Document */

* {
    margin: 0;
    padding: 0;
	border: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
	font-family: 'IRANSansWeb', tahoma;
	font-size:14px;
	font-style: normal;
	font-weight: 400;
	direction:rtl;
    text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
h1,h2,h3,h4,h5,h6 {
    font-style: normal;
    font-weight: normal;
    font-size: inherit;
}
body{
	margin:0;
	padding:0;
	line-height:normal;
	overflow: hidden;
    overflow-y: hidden;
	overflow-x: hidden;
	font-weight: 200;
	-webkit-font-kerning: auto;
	-webkit-font-smoothing: antialiased;
	cursor:default;
	direction:ltr;
	background: #F7F7F7;
}
a {
    text-decoration: none;
    color: #000;
}
.main{
	position: relative;
	width: 80%;
	margin: 0 auto;
}
.mobile-logo{
	display: none;
}
.left{
	position: relative;
	float: left;
	width: 50%;
	margin-top: 15%;
}
.left img{
	width: 70%;
	display: block;
	margin: 0 auto;
}
.right{
	position: relative;
	float: left;
	width: 50%;
	margin-top: 20%;
}
.right img{
	width: 100px;
}
.error-name{
	display: block;
	width: 100%;
	font-weight: 400;
	font-size: 46px;
	text-align: right;
	color: #FB3737;
	margin-top: 10px;
}
.error-desc{
	display: block;
	width: 100%;
	font-weight: 700;
	font-size: 24px;
	text-align: right;
	color: #020202;
	margin-top: 5px;
}
.error-solution{
	display: block;
	width: 100%;
	font-weight: 400;
	font-size: 14px;
	text-align: right;
	color: #293462;
	margin-top: 10px;
}
.button1{
	display: inline-block;
	background: #74C044;
	border: 2px solid #74C044;
	border-radius: 10px;
	font-weight: 700;
	font-size: 12px;
	text-align: center;
	color: #FFFFFF;
	padding: 15px 40px;
	margin-left: 20px;
	margin-top: 20px;
}
.button2{
	display: inline-block;
	border: 2px solid #74C044;
	border-radius: 10px;
	font-weight: 700;
	font-size: 12px;
	text-align: center;
	color: #74C044;
	padding: 15px 40px;
	margin-top: 20px;
}
@media only screen and (max-width: 767px){
	.main{
		width: 100%;
	}
	.mobile-logo{
		display: block;
		width: 30%;
		margin: 60px auto 0;
	}
	.left{
		width: 100%;
		margin-top: 0;
	}
	.left img{
		width: 60%;
	}
	.right{
		width: 100%;
		margin-top: 10px;
	}
	.right img{
		display: none;
	}
	.error-name{
		font-weight: 400;
		font-size: 46px;
		text-align: center;
		margin-top: 0;
		margin-bottom: 20px;
	}
	.error-desc{
		font-weight: 700;
		font-size: 16px;
		text-align: center;
		color: #020202;
		margin-bottom: 20px;
	}
	.error-solution{
		font-weight: 400;
		font-size: 14px;
		text-align: center;
		color: #293462;
		margin-bottom: 20px;
	}
	.button1{
		display: block;
		width: 50%;
		border-radius: 10px;
		font-weight: 700;
		font-size: 12px;
		padding: 15px 0;
		margin: 0 auto;
		margin-bottom: 20px;
	}
	.button2{
		display: block;
		width: 50%;
		border-radius: 10px;
		font-weight: 700;
		font-size: 12px;
		padding: 15px 0;
		margin: 0 auto;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1023px){
	.main{
		width: 90%;
	}
	.left img{
		width: 80%;
	}
	.error-name{
		font-size: 36px;
	}
	.error-desc{
		font-size: 18px;
	}
	.button1{
		font-size: 12px;
		padding: 10px 25px;
		margin-left: 10px;
		border-radius: 7px;
	}
	.button2{
		border-radius: 7px;
		font-size: 12px;
		padding: 10px 25px;
	}
}
@media only screen and (min-width: 1024px) and (max-width: 1503px){
	.main{
		width: 90%;
	}
}