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

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

}

/* Medium Devices, Desktops */
@media only screen and (min-width : 850px) {
    .header-top {
        background: linear-gradient(145deg, #D80707, #60164B, #FDF5D7 100%);
    }
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {

}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 550px) {
    .a-order{
        order: -1;
    }
}

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

}
