/*==========  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-bottom {
        background: linear-gradient(to right, #ffff, #c70901, #c70901, #c70901, #ffff);
    }
    .header-bottom .menu-item a{
        flex-direction: column;
        align-items: center;
        gap: 7px;
    }
}

/* Small Devices, Tablets */
@media only screen and (max-width : 850px) {
    .a-banner-left,
    .a-banner-right {
        max-width: 100px;}
}

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

}

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

}
