.children-grid {
	padding: 30px 15px;
}

.children-grid article {
	position: relative;
	margin-bottom: 20px;
	box-shadow: 0px 10px 21px rgba(0, 0, 0, .25);
	overflow: hidden;
}

.children-grid article a {
	font-family: "proxima-nova-condensed";
	padding: 30px 0;
	background: #404041;
	display: block;
	color: #fff;
	text-align: center;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 1px;
	transition: background .2s linear;
	text-transform: uppercase;
}

.children-grid article a i {
	display: block;
	margin-bottom: 10px;
	font-size: 35px;
}

.children-grid article a:hover {
	background: #161515;
}

@media screen and (min-width: 1024px) {
	.children-grid > div {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	
	.children-grid article {
		width: calc(50% - 10px);
		margin-bottom: 20px;
	}
	
	.children-grid article a {
		font-size: 18px;
	}
}