@media only screen and (device-aspect-ratio: 768/1024)  /* does not work on iPad or LG */
{
	#left-side{
		width: 100%;
	}
}
@media screen and (max-width: 799px) and (min-width: 500px) {
	#left-side{
		width: 100%;
	}
}

@media only screen and (device-aspect-ratio: 768/1024)  /* does not work on iPad or LG */
{
	.box1{
		    height: 606px;
	}
}
@media only screen and (device-aspect-ratio: 1024/768)  /* does not work on iPad or LG */
{
	.box1{
		       min-height: 465px !important;
	}
}