.blue-box {
	background-color: rgb(0,85,165);
	text-align: center;
	border-radius: 10px;
	padding: 10px 5px;
	margin-bottom: 15px;
	transition: all .4s ease;
	text-align:center;
}
.blue-box:hover {
		transform: scale(1.05);
		background-color: rgb(225,208,98);
		.title .text {color: $blue;}
	}
.blue-box .title {
		display: table-cell;
		vertical-align: middle;
}
.blue-box .title .text {
	color: white; text-align: center; text-transform: uppercase; font-size: 20px; font-family: Oswald, sans-serif; display: block; text-decoration: none !important;
}



.white-box {
	background-color: rgb(225,208,98);
	text-align: center;
	border-radius: 10px;
	padding: 10px 5px;
	margin-bottom: 15px;
	transition: all .4s ease;
}
.white-box:hover {
	transform: scale(1.05);
	background-color: white;
}
.white-box .title {
	display: table-cell;
	vertical-align: middle;
}
.white-box .title .text {
	color: black; text-align: center; text-transform: uppercase; font-size: 20px; font-family: Oswald, sans-serif; display: block; text-decoration: none !important; width:100%;
}

