/* Main */

@font-face{
    src: url('../css/Cairo-Regular.ttf');
    font-family: 'foryou';
}
body{
	font-family: 'foryou';
	text-align: right;
	background-image: url('../img/bg.jpg');
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
}
.overlay{
	background-color: #ffffffd9;
	min-height: 100vh;
}
.modal .modal-header .close{
	margin: -1rem auto -1rem -1rem;
	outline: none;
}
.modal a{
	display: flex;
	text-decoration: none;
	color: #333;
	text-align: left;
	margin-bottom: 20px;
	align-items: center;
    justify-content: flex-end;
}
.modal a:last-child{margin-bottom: 0;}
.modal a svg{
	width: 30px;
	margin-right: 15px;
}

/* Header */

header{
	padding: 30px 0;
	text-align: center;
}
header .head {position: relative;}
header .head button{
	position: absolute;
	top: 0;
	right: 0;
}
header .logo{
	margin: 50px 0;
	width: 300px;
}
header p {
	font-size: 20px;
}

/* Content */

.content{
	padding-bottom: 50px;
}
.content ul {
	list-style: none;
	padding: 0;
}
.content ul li{
	margin-bottom: 20px;
}
.content ul li:last-child{
	margin-bottom: 0;
}
.content .box{
	display: block;
	text-decoration: none;
	background-color: #fff;
	border-radius: 8px;
	padding: 20px 10px;
	position: relative;
	text-align: center;
}
.content .box:hover {
	background-color: #e5ecf3;
	transition: all .3s ease-in;
}
.content .box img{
	position: absolute;
	right: 20px;
	top: 7px;
	height: 60px;
    width: 60px;
    border-radius: 50%;
}
.content .box b{
	font-size: 22px;
	color: #3a467d;
}
.content .box span{
	margin-right: 10px;
	font-size: 20px;
	color: #b36104;
}

/* Footer */

.footer{
	padding: 50px 0;
    text-align: center;
}

/* Media */

@media (max-width: 767px){
	.content .box {
		padding: 20px 30px 20px 10px;
	}
	.content .box img{
		right: 10px;
		height: 50px;
    	width: 50px;
		top: 10px;
	}
	.content .box b{
		font-size: 20px;
	}
	.content .box span{
		margin-right: 10px;
		font-size: 18px;
	}
}