/* ----------------------------- MOBILE DEVICES BEGIN -----------------------------*/

#animated-header {
	height: 530px;
	width: 100%;
}


/* #### Mobile Phones Portrait #### */
@media screen and (max-device-width: 480px) and (orientation: portrait){

}

/* #### Mobile Phones Landscape #### */
@media screen and (max-device-width: 640px) and (orientation: landscape){

}

/* #### iPhone 4+ Portrait #### */
@media screen and (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2)  and (orientation: portrait){

}

/* #### iPhone 4+ Landscape #### */
@media screen and (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2)  and (orientation: landscape){

}

/* #### Tablets Portrait or Landscape #### */
@media screen and (min-device-width: 768px) and (max-device-width: 1024px){

}

/* ----------------------------- MOBILE DEVICES END -----------------------------*/

