/*==========  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:not(.transparent) .header-bottom-nav.nav>li>a:hover {
        color: #fff;
        background: green;
        border-radius: 99px;
        padding: 10px 15px;
        background: linear-gradient(0deg, #c85000, #ff9b1c);
        border: 1px solid #fff !important;
        -webkit-filter: drop-shadow(2px 2px 8px #f6ce75) brightness(1.3) !important;
        filter: drop-shadow(2px 2px 8px #f6ce75) brightness(1.3) !important;
    }
}

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

}

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

}

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

}
