@import url('https://fonts.googleapis.com/css?family=Cairo');
*{
	margin: 0;
	padding: 0;
	font-family:'Cairo', sans-serif;
	box-sizing: border-box;
	transition: .2s linear;
}
body{
	background: #fff;
}
.wrapper{
	margin: 10px auto;
	padding: 0 10%;
	padding-bottom: 10px;
	text-transform: capitalize;
	border-radius: 10px;
}
h1 {
	color:#ccc;
	font-size:45px;
	text-align:center;
	padding-bottom: 15px;
	text-shadow: 0 1px 2px rgba(0, 0, 0.2);
}
.container{
	display: grid;
	gap: 15px;
	grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}
.box{
	
	padding:20px;
	text-align:center;
	border-radius:5px;
	background:#fff;
	box-shadow:0px 5px 10px rgba(0, 0, 0.2);
}
.box i{
	height:70px;
	font-size: 70px;
	color: #F79E38;
}
.box h3{
	color:#444;
	padding: 10px 0;
	font-size:20px;
}
.box p{
	color:#777;
	font-size:14px;
	line-height:1.6
}
.button{
	color: #fff;
	border: none;
	outline: none;
	font-size: 17px;
	margin-top: 10px;
	padding: 8px 15px;
	background: #333;
	border-radius: 5px;
	display: inline-block;
	text-decoration: none;
}
.button:hover{
	letter-spacing: 1px;
}
.button:hover{
	transform: scale(1.03);
	box-shadow:0 10px 15px rgba(0, 0, 0.3);
	background-color: #F79E38;
}
.box:hover{
	transform: scale(1.03);
	box-shadow:0 10px 15px rgba(0, 0, 0.3);
}
@media(max-width:770px) {
	.wrapper{padding: 20px;}
}

header{
	width: 100%;
	background-color: #fff;
	padding-top: 10px;
	text-align: center; /* Center align the contents horizontally */
	display: flex;
	justify-content: center; /* Center align the contents horizontally for older browsers */
	align-items: center; /* Center align the contents vertically */
	border-radius: 5px ;
}

header img{
	max-width: 100%;
	max-height: 100%;
width:75%}
header .warpper{background-color: #fff;}