:root {
	--brand-color: #555;
	--brandMain-backgournd: #f5f5f5;
	--brand-background: #fff;
	--brand-box-shadow: 0 0 10px #ddd;
	--brand-border: 3px #fff solid;
	--brandUP-box-shadow: 0 0 12px #aaa;
	--brandS-background: #309aef;
	--brandFooter-box-shadow: 0 -5px 7px #999;
	--brandHeader-box-shadow: 0 5px 7px #999;
	--brand-title: #fff;
	counter-reset: li;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	transition: all 0.15s linear;
	font-family: "Source Sans Pro", "Segoe UI Light", "dubai light";
}
.box {
	width: 100%;
	background: var(--brand-background);
	border-radius: 20px;
	color: var(--brand-color);
	box-shadow: var(--brand-box-shadow);
	padding: 10px 20px;
	font-size: 20px;
	flex-wrap: wrap;
	margin: 10px 0;
}
body {
	background: var(--brandMain-backgournd);
	overflow-x: hidden;
}
.container {
	width: 90%;
	max-width: 1250px;
	margin: 0 auto;
	padding: 10px 0 30px;
}
header {
	background: var(--brandS-background);
	box-shadow: var(--brandHeader-box-shadow);
	padding: 15px 0;
	margin-bottom: 15px;
}
header .container {
	padding: 0;
}
header h1 {
	color: var(--brand-title);
	text-align: center;
}
nav {
	display: flex;
	justify-content: space-between;
}
nav > main {
	width: 30%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	background: var(--brand-background);
	border-radius: 20px;
	box-shadow: var(--brand-box-shadow);
	border: var(--brand-border);
}
nav > main:hover {
	border: 3px rgba(48, 154, 239, 0.5) solid;
	box-shadow: var(--brandUP-box-shadow);
}
main img {
	width: 90%;
	height: 89%;
	margin: 0;
}
nav article {
	width: 68%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-content: space-between;
	perspective: 500px;
}
nav .box {
	display: flex;
	align-items: center;
	margin: 0;
	width: 48%;
	height: 31%;
	border-left: var(--brand-border);
}
nav .box:hover {
	border-left: 3px #309aef solid;
	border-radius: 0 20px 20px 0;
	transform: translateX(10px);
	box-shadow: var(--brandUP-box-shadow);
}
nav a {
	color: #309aef;
	text-decoration: none;
}
.box h4 {
	color: #309aef;
	margin: 5px 0;
	font-size: 20px;
}
.box p {
	font-size: 18px;
	font-weight: 600;
}
p span {
	color: #309aef;
	font-weight: 700;
}
.container section {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.title {
	width: 50%;
	min-width: 190px;
	margin: 35px 25% 15px;
	background: #309aef;
	padding: 0 15px;
	border-radius: 27.5px;
	border: none;
}
.title h4 {
	text-align: center;
	background: var(--brand-background);
	padding: 15px 0;
	margin: 0;
	width: 100%;
	border-radius: 27.5px;
	font-weight: 800;
}
.box h4 {
	width: 100%;
	font-size: 20px;
}
.box ul {
	padding: 10px 0 0;
}
.box li {
	list-style: none;
	font-size: 17px;
	color: #309aef;
	margin-top: 10px;
}
.box li::before {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	counter-increment: li;
	content: counter(li);
	margin-right: 5px;
	font-size: 16px;
	height: 20px;
	width: 20px;
	background: #309aef;
	color: #fff;
	border-radius: 5px;
	font-weight: 100;
}
.box dt {
	font-size: 16px;
	padding-left: 25px;
}
.ar-mode .box:nth-of-type(2) {
	width: 38%;
}
.ar-mode .box:nth-of-type(3) {
	width: 60%;
}
ul {
	counter-reset: li;
}
.results .box:nth-of-type(2) {
	width: 42%;
}
.results .box:nth-of-type(3) {
	width: 56%;
}
li img,
dt img {
	width: 20px;
	height: 20px;
	margin-bottom: -5px;
}
.up img {
	background: #303134;
	border-radius: 5px;
}
.up:last-of-type img {
	padding: 2px;
}
footer {
	background: var(--brandS-background);
	padding: 15px 0;
	margin-top: 20px;
	box-shadow: var(--brandFooter-box-shadow);
	color: #eee;
}
footer div.container {
	width: 90%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	padding: 0;
}
footer img {
	width: 25px;
	height: 25px;
	margin: 0 2px;
	color: #fff;
}
footer address {
	color: #309aef;
	width: 30%;
	margin: 0 auto;
	display: flex;
	justify-content: space-around;
	align-items: center;
}
footer p span {
	font-size: 125%;
	color: #fff;
}
aside {
	width: 180px;
	background: #555;
	padding: 10px;
	padding-right: 7px;
	transition: all 0.3s linear;
	border-radius: 0 10px 10px 0;
	position: fixed;
	top: 100px;
	left: -162px;
	opacity: 0.8;
}
aside:hover,
.swiped {
	opacity: 0.9;
	background: #333;
	left: 0;
	padding-right: 10px;
}
aside section:last-of-type {
	display: none;
}
.swiped section:last-of-type,
aside:hover section:last-of-type {
	display: block;
}
aside section:first-of-type {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
aside img {
	width: 25px;
	cursor: pointer;
}
aside hr {
	margin: 10px 0;
}
aside span {
	font-weight: bold;
	color: #eee;
}
aside div {
	padding-left: 30px;
	cursor: pointer;
}
aside h5 {
	width: 5px;
	height: 30px;
	background: #eee;
	border-radius: 2.5px;
}
aside h4 {
	color: #eee;
	font-weight: 100;
	font-size: 14px;
}
aside a {
	text-decoration: none;
	cursor: pointer;
}
aside a:hover {
	text-decoration: #fff underline;
}
@media only screen and (max-width: 850px) {
	.container section {
		display: block;
	}
	.results .box:nth-of-type(2),
	.results .box:nth-of-type(3),
	.ar-mode .box:nth-of-type(2),
	.ar-mode .box:nth-of-type(3) {
		width: 100%;
	}
	.title {
		margin-left: auto;
		margin-right: auto;
	}
}
@media only screen and (max-width: 800px) {
	h3.box {
		font-size: 18px;
	}
}
@media only screen and (max-width: 765px) {
	footer {
		display: block;
	}
	footer p {
		width: 100%;
		margin-bottom: 10px;
		text-align: center;
	}
}
@media only screen and (max-width: 650px) {
	nav main {
		width: 50%;
		border-radius: 10px;
	}
	nav article {
		width: 48%;
	}
	nav .box {
		width: 100%;
		height: 15%;
		padding-left: 10px;
		border-radius: 10px;
	}
	nav .box:hover {
		border-radius: 0 10px 10px 0;
	}
}
@media only screen and (max-width: 525px) {
	nav .box {
		font-size: 16px;
	}
	.box h4 {
		font-size: 18px;
	}
	.box p {
		font-size: 17px;
	}
	.box li {
		font-size: 16px;
	}
	.box dt {
		font-size: 15px;
	}
}
@media only screen and (max-width: 435px) {
	nav .box:nth-of-type(2),
	nav .box:last-of-type {
		font-size: 14px;
	}
}
@media only screen and (max-width: 400px) {
	h1 {
		font-size: 24px;
	}
	nav {
		display: block;
	}
	nav main {
		width: 100%;
		height: 200px;
		margin-bottom: 5px;
	}
	main img {
		width: auto;
	}
	nav article {
		width: 100%;
	}
	nav .box {
		width: 100%;
		margin: 4px 0;
		text-align: center;
		display: block;
		border-left: none;
		border-bottom: var(--brand-border);
	}
	nav .box:hover {
		transform: translate(0, -4px);
		border-left: none;
		border-bottom-color: #309aef;
		border-radius: 10px 10px 0 0;
	}
}
@media only screen and (max-width: 250px) {
	.title {
		width: 100%;
		height: auto;
	}
	.title h4 {
		font-size: 16px;
		padding: 10px 0;
	}
}

/* Mon Jan 18 2021 10:34:16 : سبحان الله، سبحانك اللهم وبحمدك أشهد أن لا إله إلا أنت أستغفرك و أتوب إاليك */
