/* CSS Document */
.logo-grayscale {
   max-height: 50px;
   filter: grayscale(100%);
   transition: filter 0.3s ease;
}

.logo-grayscale:hover {
   filter: grayscale(0%);
}

/* Home Page */
.pages-home-view #page-content {
	margin-top:0;
	margin-bottom:30px;
}

.full-width {
	max-width:100%!important;	
}

/* Mobile adjustments */
@media (max-width: 768px) {
	.full-width {
		height: auto;
		padding-bottom: 30px;
	}
	
	.hero-title {
		font-size: 1.8rem;
	}

	.hero-subtitle {
		font-size: 1rem;
	}

	.btn-lg {
	font-size: 1rem;
	}
}
