/*==========  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: rgb(183, 205, 203);
        background: linear-gradient(180deg, rgba(183, 205, 203, 1) 0%, rgba(22, 15, 7, 1) 40%);
    }
}

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

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

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