/* Media Query for each device - Start */

	/* i5, i5s, i5c, i5SE - Start */
	@media only screen 
	and (min-device-width: 320px) 
	and (max-device-width: 568px)
	and (-webkit-min-device-pixel-ratio: 2) {
		#container{
			padding-bottom:2rem;
		}
	}
	/* i5, i5s, i5c, i5SE - End */

	/* i6, i6s, i7, i8 - Start */
	@media only screen 
	and (min-device-width: 375px) 
	and (max-device-width: 667px) 
	and (-webkit-min-device-pixel-ratio: 2) { 
		#container{
			padding-bottom:0;
		}
	}
	/* i6, i6s, i7, i8 - End */

/* Media Query for each device - End */



/* Responsive - Start */

@media (min-width: 320px) and (max-width: 766px) {
	#container{
		margin:0;
	}
}
@media (min-width: 767px) {
	
}

	/* iPad Landscape - Start */
	@media (min-width: 992px) and (max-width: 1025px) {
		
	}
	/* iPad Landscape - End */

/* Responsive - End */

/* Fix text alignment - Start */
@media (min-width: 320px) and (max-width: 766px) {
	.text-xs-left { text-align: left; }
	.text-xs-right { text-align: right; }
	.text-xs-center { text-align: center; }
	.text-xs-justify { text-align: justify; }
}

@media (min-width: 767px) {
 	.text-sm-left { text-align: left; }
 	.text-sm-right { text-align: right; }
 	.text-sm-center { text-align: center; }
 	.text-sm-justify { text-align: justify; }
}

@media (min-width: 992px) {
 	.text-md-left { text-align: left; }
 	.text-md-right { text-align: right; }
 	.text-md-center { text-align: center; }
 	.text-md-justify { text-align: justify; }
}

@media (min-width: 1200px) {
 	.text-lg-left { text-align: left; }
 	.text-lg-right { text-align: right; }
 	.text-lg-center { text-align: center; }
 	.text-lg-justify { text-align: justify; }
}
/* Fix text alignment - End */