/* iPads (landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation : landscape){
	.title-white {
		font-size: 74px;
	}
}
/* iPads (portrait) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {
	.title-white {
		font-size: 74px;
	}
}
/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
	.title-white {
		font-size: 74px;
	}
}
/* iPhone4 */
@media only screen and (-webkit-min-device-pixel-ratio: 2) {
	.title-white {
		font-size: 74px;
	}
}