/*  ##Device = Desktops  */
@media (min-width: 1281px) {
    /* CSS */
}

/*  ##Device = Laptops, Desktops  */
@media (min-width: 1025px) and (max-width: 1280px) {
    /* CSS */
}

/*  ##Device = Tablets, Ipads (portrait)  */
@media (min-width: 768px) and (max-width: 1024px) {
    /* CSS */
}

/*  ##Device = Tablets, Ipads (landscape)  */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    /* CSS */
}

/*  ##Device = Low Resolution Tablets, Mobiles (Landscape)  */
@media (min-width: 481px) and (max-width: 767px) {
    /* CSS */
}

/*  ##Device = Most of the Smartphones Mobiles (Portrait)  */
@media (min-width: 320px) and (max-width: 480px) {
    /* CSS */
}
