@media (min-width: 1440px) {    
}

/* Large desktop :1280px. */

@media (min-width: 1201px) and (max-width: 1439px) {    
}

/* Normal desktop :992px. */

@media (min-width: 992px) and (max-width: 1200px) {    
}

/* Tablet desktop :768px. */

@media (min-width: 768px) and (max-width: 992px) {    
}

@media only screen and (max-width: 767px) {    
}

/* small mobile :320px. */
@media only screen and (min-width: 320px) and (max-width: 574px) {    
}

/* Large Mobile :575px. */

@media only screen and (min-width: 575px) and (max-width: 767px) {    
}