/**** HOME PAGE ****
*******************/

/* remove bottom margin on home intro */
.home-intro {
	margin-bottom: 0px;
}

/* change bkg color of footer */
#footer {
	background: #212121;
}

/* fix image sizes for latest blog posts (being pulled in from wordpress) */
.container.blog-posts .wp-post-image {
	width: 100%;
	height: auto;
}

/**** SERVICES PAGE ****
***********************/

/* remove default link style on hover of big service box */
.featured-boxes-full a:hover {
	text-decoration: none;
}

/* position icon in featured box in top right to link to different page */
.featured-boxes-full .top-right-link {
	position: absolute;
	right: 0;
	top: 0;
	font-size: 12px;
	background: #333;
	padding: 7px;
	border-radius: 0 0 0 4px;
	color: #e8e8e8;
	text-transform: uppercase;
}
.featured-boxes-full .top-right-link:hover {
	color: #fff;
}

/* vertical align content in email service comparison table */
.email-compare > tbody > tr > td {
	vertical-align: middle;
}

/* change color of check marks to green and x's to red */
.email-compare i.fa-check {
	color: green;
}
.email-compare i.fa-close {
	color: red;
}