/*============================================

[Table of content]

1. Large devices (less than 1500px)
2. Large tablets (less than  1200px)
3. Tablet Devices (less than  992px)
4. Large Mobile (less than  768px)
5. Small Mobile (less than  576px)
6. Extra Small Mobile (less than  480px)
7. Iphone Device (less than  380px)
8. Custom Devices(less than  321px)

============================================*/

/* 1. Large Devices (less than 1500px) */
@media (min-width: 1200px) and (max-width: 1499px){
  
}
/* 2. Large tablets (less than 1200px) */
@media only screen and (max-width: 1199px){
  
}
/* 3. Tablet Devices (less than  992px) */
@media only screen and (max-width: 991px){
  
}

/* 4. Large Mobile (less than  768px) */
@media only screen and (max-width: 767px){
  
}
    
/* 5. Small Mobile (less than  576px) */
@media only screen and (max-width: 575px){
  
}

/* 6. Extra Small devices (less than  480px) */
@media only screen and (max-width: 479px){
  
}

/* 7. Iphone Devices (less than  380px) */
@media only screen and (max-width: 379px){
  
}

/* 8. Custom Devices (min-width: 0px) and (max-width: 320px) */
@media only screen and (min-width: 0px) and (max-width: 320px){
  
}
