/*==========  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) {
    .nav-right{
        flex-direction: column;
        gap: 5px;
    }
    .nav-right li{
        margin: unset;
    }
    .nav-right .button{
        min-width: 150px;
    }
    .header-bottom .menu-item {
        margin: unset;
        padding: 2px 10px;
    }
    .header-bottom .menu-item.active{
        background-color: #237FC1;
    }
    
}

/* Small Devices, Tablets */
@media only screen and (max-width : 850px) {
    .a-order{
        order: -1;
    }
    .a-footer-bottom .row{
        gap: 10px;
    }
}

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

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

}
