/*==========  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 (max-width : 768px) {}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 550px) {
    .a-banner {
        min-height: unset !important;
        height: unset !important;
        padding: 40px 0 !important;
    }

    .a-gioi-thieu-right .col-inner,
    .a-banner-right .col-inner {
        background-size: cover;
        border: 1px solid rgba(255, 215, 128, 0.15);
        border-radius: 1rem;
    }

    .a-group-gt {
        grid-template-columns: repeat(1, 1fr) !important;

    }
}

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