/*======= IPAD ========*/

/* FOR iPad in portrait & landscape */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px)  { 

}
/*END for iPad in portrait & landscape */

/* FOR iPad in landscape */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : landscape) { 

}

/*END for iPad in landscape */

/* FOR iPad in portrait */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : portrait)  { 

}
/*END for iPad in portrait */