.whyUs {
	width: 100%;
	min-height: 60vh;
	padding: 30px 10px;
	background-color: lightyellow;
}
.whyUs h1{
	text-align: center;
	font-weight: bold;
}
.whyUsContent {
	width: 90%;
	margin-left: 5%;
}
.whyUsContent p {
	font-size: 19px;
	text-align: center;
	padding: 20px 0;
	line-height: 32px; 
}

.whyUsBoxes {
	width: 100%;
	min-height: 80vh;
	background-color: lightyellow;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.boxes {
	width: 30%;
	min-height: 70vh;
	font-size: 16px;
	text-align: justify;
	line-height: 28px;
	display: flex;
	float: left;
	flex-wrap: wrap;
	align-items: center;
	margin: 0 8px;
	margin-left: 2%;
	padding: 10px;
	background-color: lightgreen;
	box-shadow:5px 8px 5px 0px grey;
	transition: 0.5s;
}
.boxes:hover {
	transform: scale(0.95);
}
.boxes img {
	width: 100%;
}
.boxes p {
	padding: 20px 5px;
}

@media screen and (max-width: 1024px) {
	.whyUsBoxes {
		min-height: 80vh;
	}
	.boxes {
		width: 100%;
		margin-left: 0%;
	}
}

.whyUsButton {
	min-width: 100px;
	height: 35px;
	border-radius: 8px;
	padding: 5px 10px;
	background-color: #66e0ff;
	position: relative;
	bottom: 10px;
}
.whyUsButton:hover {
	background-color: #ffbb99;
}
.whyUsButton a {
	text-decoration: none;
	font-size: 16px;
	font-weight: bold;
}
