/*==========  Desktop First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
	.why { width: 30%;}
	.invest { width: 30%;}
	.titul { font-size:54px; }  
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
	.why { width: 48%;}
	.invest { width: 48%;}
	.titul { font-size:48px; }  
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
	.why { width: 90%;}
	.invest { width: 90%;}
	.titul { font-size:42px; }  
}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
	.why { width: 90%;}
	.invest { width: 90%;}
	img.esciz { width: 90%;}
	img.izo { width: 90%;}
	video.vid { width: 90%;}	
	.titul { font-size:32px; }  
}

/* Custom, iPhone Retina */
@media only screen and (max-width : 375px) {
	.why { width: 90%;}
	.invest { width: 90%;}
	 img.esciz { width: 90%;}
	 img.izo { width: 90%;}
	 video.vid { width: 90%;}
	.titul { font-size:32px; }  
} 


/*==========  Mobile First Method  ==========*/

/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {

}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {

}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {

}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {

}
