/* mobile style*/
@media only screen and (max-width: 768px) {
    .mt-footer {
        margin-bottom: 20px !important;
    }

    .product-info {
        padding-top: 20px !important;
    }

    .home-title h3:before {
        display: none;
    }

    .home-title h3, .home-title h1 {
        font-size: 30px;
        line-height: 40px;
    }

    body .swiper-button-prev {
        left: 10px;
    }

    body .swiper-button-next {
        right: 10px;
    }

    .post-small .post-thumbnail {
        width: 150px;
        height: 120px;
    }

    .post-small .post-content {
        width: calc(100% - 150px);
    }
}

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

}