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

/* Small Devices, Tablets */
@media only screen and (min-width:550px) and (max-width : 850px) {
.a-ul ul{
    grid-template-columns: repeat(1,1fr);}
}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 550px) {
    .a-border,
    .a-scroll,
    .scrolling-box{
        padding: 1rem 10px !important;
    }
	.a-nha-cai .col-inner {
		flex-direction: column;
	}
	.a-nha-cai .col-inner .stack{
		width: 100% !important;
		margin-top: 1rem;
	}
	.a-grid {
		grid-template-columns: repeat(1,1fr);
	}
	.a-grid .post-item:nth-child(1){
		grid-area: 1/1/span 1/ span 1;
	}
}

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

}
