
/* =================== IPHONE 5 RESPONSIVE =================== */

/* Portrait & Landscape */
@media only screen 
and (min-device-width : 320px) 
and (max-device-width : 568px) {
	


}

/* Portrait Only */
@media only screen 
and (min-device-width : 320px) 
and (max-device-width : 568px) 
and (orientation : portrait) {
	
	.pano_mobile{
		height:200px!important;
	}

}

/* Landscape Only */
@media only screen 
and (min-device-width : 320px) 
and (max-device-width : 568px) 
and (orientation : landscape) {


}


/* =================== GENERAL RESPONSIVE =================== */


/*mini?(mobile)*/
@media (max-width: 767px) {
	
}

/*small*/
@media (min-width: 768px) and (max-width: 991px) {
	/*.visible-sm*/
}
/*medium*/
@media (min-width: 992px) and (max-width: 1199px) {
	/*.visible-md*/
}
/*large*/
@media (min-width: 1200px) {
	/*.visible-lg*/
}
 