/*!
 * Custom CSS file to override bootstrap.css
 */
.banner {
	background: url(/images/banner.jpg) no-repeat;
	width: 100%;
	padding: 5%;
	color: white;
} 	
.button {
	margin: .75em 0 1em 0;
}

.lg-only {
	display: none;
}

.not-lg {
	display: block;
}

.not-on-mobile {
	display: none;
}

.red {
	color: #dc3545;
}

@media (min-width: 576px) {
  .not-on-mobile {
    display: block;
  }
}

@media (min-width: 992px) {
	.lg-only {
		display: block;
	}
	
	.not-lg {
		display: none;
	}
}

