.quick-links-feature {
	border-bottom: solid #fff 1rem;
	color: #fff;
	padding: 3rem 0;
}

.quick-links-feature-wrapper {
	font-size: 0;
}

.links {
	box-sizing: border-box;
	display: inline-block;
	vertical-align: middle;
	width: 70%;
}

.link {
	display: table;
	margin-bottom: 1rem;
	width: 100%;
}

.link:last-child {
	margin-bottom: 0;
}

.link-content {
	background: rgba(7,55,92,0.8);
	box-sizing: border-box;
	display: table-cell;
	font-size: 1.5rem;
	vertical-align: middle;
	padding: 2rem;
	width: 80%;
}

.link-content h2 {
	color: var(--color-yellow);
	font-family: "voltage",sans-serif;
	font-size: 3rem;
}

.link-link {
	font-size: 1rem;
}

.link-link a {
	color: #fff;
	text-decoration: none;
}

.link-link a:hover {
	text-decoration: underline;
}

.link-button {
	background: rgba(5,41,75,0.9);
	box-sizing: border-box;
	display: table-cell;
	padding: 2rem;
	vertical-align: middle;
	width: 20%;
}

.links-icon {
	box-sizing: border-box;
	display: inline-block;
	padding-left: 3rem;
	vertical-align: middle;
	width: 30%;
}

/* Tablets - General */

@media (min-width: 768px) and (max-width: 1024px) {

	.links {
		display: block;
		width: 100%;
	}
	
	.links-icon {
		display: none;
	}
	
	.link-content {
		width: 70%;
	}
	
	.link-button {
		width: 30%;
	}

}

/* Smartphones - General */

@media (max-width: 767px) {
	
	.links {
		display: block;
		width: 100%;
	}
	
	.links-icon {
		display: none;
	}
	
	.link-content {
		display: block;
		width: 100%;
	}
	
	.link-button {
		display: none;
	}

}