/*==========  Non-Mobile First Method  ==========*/

/* extra Large Devices, Wide Screens */
@media only screen and (min-width : 1600px) {

}

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

}

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {

}

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


}


/* Extra Small Devices, Phones */
@media only screen and (max-width : 575px) {


}

/* Custom, iPhone Retina */
@media only screen and (max-width : 400px) {


}