
							/* Float four columns side by side */
							.page_column {
							float: left;
							width: 25%;
							padding: 0 10px;
							margin-bottom: 10px;
							box-sizing: border-box;
							}

							/* Remove extra left and right margins, due to padding */
							.page_row {margin: 0 -5px;} 

							/* Clear floats after the columns */
							.page_row:after {
							content: "";
							display: table;
							clear: both;
							}

							/* Responsive columns */
							@media screen and (max-width: 600px) {
								.page_column {
								   float: left;
									width: 50%;
									margin-bottom: 10px;
									
								}
							}

							/* Style the counter cards */
							.page_item_card {
							padding-top: 8px;
							padding-bottom: 0px;
							text-align: center;
							box-shadow: 0 1px 2px 0 rgba(0,0,0,0.2);
							transition: 0.3s;
							border-radius: 5px;
							-moz-border-radius: 5px;
							}

							.page_item_card:hover {
								
								background: #E7E7E7;
								border-radius: 5px;
								-moz-border-radius: 5px;
							}