/** Write your css here ***/


/*********** Smartphones ************/

@media only screen and (min-width : 320px) and (max-width : 480px) {
/* Styles */
}

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

/************* Tablets **************/

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

@media only screen and (min-width : 768px) and (max-width : 1024px) {

}

/************* Desktops ***************/

@media only screen and (min-width : 992px) and (max-width : 1199px) {
    /* Styles */
}

@media only screen and (max-width : 1200px) {
    /* Styles */
}