/* mobile style*/
@media only screen and (max-width: 768px) {
    .abouts.text-right {
        text-align: center;
    }

    .mt-footer {
        margin-bottom: 20px !important;
    }

    .form-group.text-right {
        text-align: center;
    }

    .tab-product ul {
        display: inline-block;
        overflow-x: scroll;
        white-space: nowrap;
    }
    .tab-product ul::-webkit-scrollbar{
        height: 0;
    }
}

/* iPad landscape style here */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {

}

/* iPad portrait style here */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {


}

/**desktop**/
@media only screen and (min-width: 1440px) {

}