/*==========  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) {
    .a-blog{
        padding: 30px 30px 0 30px;
        border: 2px solid #FFD900;
        border-radius: 12px;
    }
    .a-footer{
        padding-top: unset !important;
    }
    .home .header {
        position: fixed;
    }

    .stuck .header-main {
        background: #000 !important;
    }

    .a-banner {
        padding-top: 140px !important;
    }
}

/* Small Devices, Tablets */
@media only screen and (max-width : 850px) {
    .header-main {
        background: #000 !important;
    }
}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 550px) {
    .a-banner .a-flex{
        flex-direction: column;
    }
    .a-banner .a-flex p{
        font-size: 20px;
    }
    .a-nha-cai {
        padding: 1rem;
        width: calc(100% - 20px) !important;
        margin: 0 auto !important;
        margin-bottom: 1rem !important;
    }

    .a-nha-cai::before {
        transform: unset;
        left: 10px;
    }

    .a-blog {
        grid-template-columns: repeat(1, 1fr);
    }
    .a-blog .post-item {
        grid-column: -1/1;
    }
    .a-footer .a-menu{
        flex-direction: column;
        align-items: center;
    }
    .a-order{
        order: -1;
    }
}

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