/* Large Desktop Device :1501px*/
@media (min-width: 1501px) {
    
} 
 
/*Desktop Device : 1200px*/
@media (min-width: 1200px) and (max-width: 1500px) {
    
}

/* Normal Device :992px. */
@media (min-width: 992px) and (max-width: 1199px) {

}

/* Tablet Desktop :768px. */
@media (min-width: 768px) and (max-width: 991px) {
    
}

/*Large Mobile Device :576px */
@media (min-width: 576px) and (max-width: 767px) {
    
}
/* Small Mobile Device :480px. */
@media (min-width: 480px) and (max-width: 575px) {
    
}
/* Extra Small Mobile Device :320px. */
@media (max-width: 479px) {
    
}