/* mobile style*/
@media only screen and (max-width: 768px) {
    .post-item .post-thumbnail {
        width: 100%;
        height: 220px;
        float: left;
    }

    .post-item .post-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        overflow: hidden;
        transition: 0.3s ease-in-out;
    }

    .post-item .post-content {
        width: 100%;
        padding: 10px 0;
        float: left;
    }

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

    .product-item .product-thumbnail {
        height: 220px;
    }

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

    button.owl-prev {
        left: 0px;
    }

    button.owl-next {
        right: 0px;
    }

    .post-related .post-related-thumbnail {
        height: 200px;
    }

}

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


}