/*==========  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) {
     /* logo center */
     .header-main{
        z-index: 999;
    }
    #logos{
        width: 60px;
        margin: unset !important;
        transform: scale(1.5) translateY(30%);
    }
    .stuck #logos{
        transform: unset !important;
    }
    #logo{
        display: none !important;
    }
    .header-main .nav-left {
        justify-content: space-around;
    }
    /* end logo center */
}

/* 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) {

}
