/*320px — 480px: Mobile devices
481px — 768px: iPads, Tablets
769px — 1024px: Small screens, laptops
1025px — 1200px: Desktops, large screens
1201px and more —  Extra large screens, TV*/

@media only screen and (min-width: 320px) and (max-width: 480px){
	.popImg{
		height: 250px !important;
		width: 250px  !important;
		/*object-fit: cover !important;*/
	}
	.woaImg{
		height: 300px;
		width: 100%;
		object-fit: contain !important;
	}
	.sideImages{
		height: 350px;
		width: 100%;
		object-fit: contain !important;
	}
	.abtImg{
		height: 200px;
		widows: 200px;
	}

	
}
@media only screen and (min-width: 481px) and (max-width: 768px){
	.popImg{
		height: 300px !important;
		width: 300px  !important;
		/*object-fit: cover !important;*/
	}
	.woaImg{
		height: 300px;
		width: 100%;
		object-fit: contain !important;
	}
}
@media only screen and (min-width: 769px) and (max-width: 1024px){

}
@media only screen and (min-width: 1025px) and (max-width: 1200px){

}
@media only screen and (min-width: 1201px){

}