/*==========  Non-Mobile First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {}

/* Medium Devices, Desktops */
@media only screen and (min-width : 851px) {
   
}

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

    .j-banner p:nth-child(2) {
        font-size: 40px;
    }

    .j-banner p:nth-child(4) {
        font-size: 40px;
    }

    .j-banner p:nth-child(5) {
        font-size: 14px;
    }
}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 550px) {
    .j-banner p {
        font-size: 14px;
    }

    .j-banner p:nth-child(2), .j-banner p:nth-child(4) {
        font-size: 36px;
    }


    .j-banner p:nth-child(5) {
        font-size: 14px;
    }
    .j-tin-tuc .row{
        grid-template-columns: repeat(1,1fr);}
}

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