/*****************************************************
***************** Maximum Resolution *****************
*****************************************************/

/* Extra small devices (phones, 480px) */
@media (max-width: 320px) { 

}
@media (max-width: 480px) { 

}

/* Small devices (tablets, 768px and up) */
@media (max-width: 767px) {

}

/* Medium devices (desktops, 992px and up) */
@media (max-width: 992px) { 


}

/* Large devices (large desktops, 1200px and up) */
@media (max-width: 1200px) { 


}


/*****************************************************
***************** Minimum Resolution *****************
*****************************************************/

/* Extra small devices (phones, 480px) */
@media (min-width: 480px) { 
 
}

/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) { 

}

/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px) { 


}

/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) { 


}


/*****************************************************
*************** Max and Min Resolution ***************
*****************************************************/
/* Small devices (tablets, 640px and 767px) */
@media (min-width: 640px) and (max-width: 767px) {

}

/* 768px and 991px */
@media (min-width: 768px) and (max-width: 991px) {

}

/* 992px and 1200px */
@media (min-width: 992px) and (max-width: 1199px) {

}

/* 1200px and up */
@media (min-width:1200px) {
	
}












