/*For larger desktop  screen*/
@media (min-width:1201px) {
.container {
width: 1285px !important; 	
}
}
/*this part is only for common layouts in mobile and tablets*/
@media (max-width: 991px) { 

}

/*For mobile devices*/
@media (max-width: 767px) {

}
/*For landscape view in mobile*/
@media (min-width:480px) and (max-width: 767px) and (orientation:landscape) {  

}
/*Mobile devices ends here*/

/*Tablet devices starts here (Portrait view)*/
@media (min-width:768px) and (max-width: 991px) {

	}
/*Tablet devices ends here*/

/*Tablet devices starts here (landscape view)*/
@media (min-width:992px) and (max-width: 1199px) and (orientation:landscape) {

}