:root{
	--primary-color: 30;
	--color-light: hsl(var(--primary-color),30%,80%);
	--color-mid: hsl(var(--primary-color),30%,60%);
	--color-dark: hsl(var(--primary-color),30%,40%);
	--color-darker: hsl(var(--primary-color),30%,20%);
}
body{
	margin: 0px;
	padding: 0px;
	height: 100%;
	width: 100%;
	background-color: #121212;
	color: white;
}
html[lang='en'] body, .en{
	font-family: 'Montserrat', sans-serif;
}
html[lang='ar'] body, .ar{
	font-family: 'Cairo', sans-serif;
}
*{
	box-sizing: border-box;
}
ul{
	padding-left: 1rem;
}
.h100{
	height: 100px;
}
.h60{
	height: 60px;
}
.h30{
	height: 30px;
}
h1,h2,h3,h4,h5,h6{
	color: var(--color-mid);
}
nav{
	margin: 50px 0px;
}
nav .logo{
	width: 210px;
}
nav .menu{
	display: flex;
	width: 100%;
	height: 100%;
	column-gap: 5%;
	justify-content: flex-end;
	align-items: center;
}
nav .menu a{
	text-decoration: none;
	color: white;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--color-mid);
}
nav .mobile-burger{
	display: none;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after{
	background-color: var(--color-mid);
}
.hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner::before, .hamburger.is-active .hamburger-inner::after{
	background-color: var(--color-mid);	
}
.banner{
	width: 100%;
	border-radius: 10px;
}
.about{
	margin: 60px 0px;
}
#about .img-about{
	position: relative;
	background-image: url('../assets/images/who-we-are.jpg');
	background-position: center center;
	background-size: cover;
	width: 100%;
	height: 100%;
}
.tag{
	display: inline-block;
	padding: 5px 10px;
	color: black;
	background-color: var(--color-dark);
	border-radius: 5px;
}
.member{
	height: 100%;
	padding: 30px;
	background-color: #222;
}
.member .head{
	display: flex;
	align-items: center;
}
.member .head .avatar{
	width: 80px;
	height: 80px;
	background-repeat: no-repeat;
	background-position: center center;
	background-color: #333;
	border-radius: 1000px;
	background-size: cover;
}
.member .head .name{
	color: white;
	margin-left: 15px;
}
html[lang="ar"] .member .head .name{
	margin-left: unset;	
	margin-right: 15px;
}
.member p{
	margin-top: 30px;
}
#contact a{
	color: white;
	font-size: 20px;
}
#contact img{
	width: 30px;
	margin-right: 20px;
}
html[lang="ar"] #contact img{
	margin-right: unset;
	margin-left: 20px;
}
footer{
	padding: 30px;
	background-color: var(--color-darker);
	color: white;
}
@media(max-width: 768px){
	.about {
	    margin: 0px 0px;
	}
	footer{
		padding: 30px 0px;
	}
	.h100{
		height: 30px;
	}
	.h60{
		height: 30px;
	}
	nav{
		margin-top: 20px;
	}
	nav .logo{
		width: 100%;
	}
	nav .mobile-burger{
		position: relative;
		display: flex;
		justify-content: flex-end;
		align-items: center;
		height: 100%;
		padding-right: 30px;
		z-index: 3;
	}
	nav .menu{
		display: flex;
		position: fixed;
		height: 100%;
		width: 100%;
		right: -100%;
		top: 0px;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		background-color: var(--yellow);
		z-index: 2;
		transition: right 300ms;
		background-color: var(--color-darker);
	}
	nav .menu.active{
		right: 0px;
	}
	nav .menu a{
		font-size: 30px;
		color: var(--color-mid);
		text-decoration: none;
		margin: 10px;
		font-weight: bold;
		width: 100%;
		text-align: center;
	}
	nav .menu a.active{
		background-color: black;
		color: var(--yellow);
	}
}