/*==========  Non-Mobile First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {

}

@media only screen and (min-width : 850px) {
    #logo{
        display: none !important;
    }

    .header-nav-main.nav-left {
        justify-content: center !important;
    }

}


/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {

}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 450px) {
    .a-section-1 .box-image{
        max-width: 200px;
    }

}

/* Custom, iPhone Retina */
@media only screen and (max-width : 375px) {
    .a-section-1 .box-image{
        max-width: 165px;
    }
}
