/*==========  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-image: linear-gradient(to right,#E59E05, #FFD900);
}
    .a-menu{
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Small Devices, Tablets */
@media only screen and (max-width : 850px) {
 .header-bottom li{
    	margin: 0 5px;
    }

}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 550px) {
	.a-loai-tai-xiu .tab-panels .row .col {
		flex-basis: 50% !important;
		max-width: 50% !important;
	}
    .a-banner .flex {
    	flex-direction: column;
    }
   
}

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

}