/*==========  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: 120px;
        margin: unset !important;
        transform: scale(1.5);
    }
    .stuck #logos{
        transform: unset !important;
    }
    #logo{
        display: none;
    }
    .header-main .nav-left {
        justify-content: space-around;
    }
    /* end logo center */
    .header-main .menu-item a{
        padding: 27px 0;
    }
     
    .header-bg-color{
        background: unset !important;
    }
    .header-main {
        background: #ecc242;
    }
    .a-menu {
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
    }
 
}

/* Small Devices, Tablets */
@media only screen and (max-width : 850px) {
    .a-banner p {
        font-size: 32px;
    }
}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 550px) {
    .a-banner p {
        font-size: 18px;
    }
    .a-row {
        padding: 20px 0;
        padding-bottom: unset;
    }

}

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

}