/* Large desktop */
@media (min-width: 1200px) {
	
}
 
/* Portrait tablet to landscape and desktop */
@media (min-width: 768px) and (max-width: 979px) { 
	.banner h1 {font-size: 35px;}
}
 
/* Landscape phone to portrait tablet */
@media (max-width: 767px) { 
	body
	{ 
		background-image:url('../../img/xmas/happy_holidays_greeting_card_tablet.jpg');
		background-repeat:no-repeat;
		background-color:#789CB5 !important;
		background-attachment:fixed;
		background-position:center;
	}
	.banner h1{ font-size: 25px; }
	.banner h2 { display: none; }
}
 
/* Landscape phones and down */
@media (max-width: 480px) { 
	body
	{ 
		background-image:url('../../img/xmas/happy_holidays_greeting_card_mobi.jpg');
		background-repeat:no-repeat;
		background-color:#789CB5 !important;
		background-attachment:fixed;
		background-position:center;
		overflow-y: scroll;
	}
	.banner h1{ display: none; }
	.banner h2 { display: none; }
	.card { width:150px; }
	.checkbox { font-size: 10px; }
	.need-help-reverse{ float:left !important; }
}