/*==========  Non-Mobile First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {

}

/* Small Devices, Tablets */
@media only screen and (max-width : 850px) {
	.j-banner h1 span:first-child{
		font-size: 30px;
	}
	.j-banner h1 span:nth-child(2){
		font-size: 24px;
	}
	.j-banner h1 span:nth-child(3){
		font-size: 16px;
	}
	.j-banner h1 span:last-child{
		font-size: 70px;
	}
}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 550px) {
	.j-banner h1 span:first-child{
		font-size: 30px;
	}
	.j-banner h1 span:nth-child(2){
		font-size: 16px;
	}
	.j-banner h1 span:nth-child(3){
		font-size: 14px;
	}
	.j-banner h1 span:last-child{
		font-size: 50px;
	}
}

/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {

}
