
/* Fix bug where buttons displayed directly on top of News and Tips section when viewing on mobile */
.banner-wrap{
	display: contents;
}



@media (max-width: 749px) {
	/* On mobile screens, reduce margin between bottom of buttons and top of News and Tips section */
	.cc {
		margin-top: -25px;
	}
	/* On mobile screens, add margin back in to top of main image */
	.cc.header {
		margin-top: 0px;
	}
	/* On mobile screens, reduce space between buttons by setting bottom margin to 3px */
	a.text-bold.button-popup {
		margin: 0;
		margin-bottom: 3px;
	}
}

