/* iphone 5 media query*/
@media screen and (max-width: 330px) and (min-width: 200px) {}

/* /iphone 6/7/8 iphone x media query/  */
@media screen and (max-width: 380px) and (min-width: 331px) {

    /* Home Page Section Css Start Here  */

    .hero {
        height: 65vh !important;
    }

    .hero-video {
        height: 100% !important;
        object-fit: cover !important;
    }

    .hero-content {
        min-height: 75vh !important;
    }

    .hero-content h1 {
        font-size: 30px !important;
    }

    .hero-content .content h4 {
        font-size: 18px;
        padding: 0px 0px !important;
    }

    .hero-content .content {
        padding: 20px 20px !important;
        width: 100% !important;
    }

    .hero-explore-btn {
        width: 60% !important;
        padding: 10px 10px !important;
        font-size: 12px !important;
        margin-top: 5px !important;
    }

    .hero-explore-btn i {
        margin: 0px !important;
    }

    .achievement-section {
        padding: 100px 0px !important;
    }

    .stats-wrapper {
        grid-template-columns: repeat(1, 1fr) !important;
    }

    .stat-node {
        min-height: 200px !important;
    }

    .product-grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }


    /* Home Page Section Css End Here */
}



/* /iphone 6/7/8 plus media query/  */
@media screen and (max-width: 700px) and (min-width: 381px) {}

/* /ipad media query/  */
@media screen and (max-width: 1024px) and (min-width: 768px) {}

/* /iPad Pro media query/  */
@media screen and (max-width: 1366px) and (min-width: 1024px) {}