/* Medium Size Devices */
@media (max-width: 824px){
    /* Navbar */
    .how-to-width{
        width: 70%;
    }
    /* Nav Design */
    .navbar .navbar-nav a.home::after,
    .navbar .navbar-nav a.support::after,
    .navbar .navbar-nav a.about::after,
    .navbar .navbar-nav a.contact::after {
        background-color: turquoise;
        content: '';
        height: 0px!important;
        width: 0%!important;
        bottom: 0px!important;
        left: 0px!important;
        position: absolute;
    }
    /* Home Page - Streaming Section */
    .section-p1 {
        padding: 40px 40px;
    }
    #streaming{
        padding: 0 25px;
    }
}

/* Mobile Devices */
@media (max-width: 427px){
    /* Navbar */
    .how-nav-position{
        justify-content: center;
    }
    .how-to-width{
        width: 100%;
    }
    .how-to-bread{
        font-size: 13px!important;
    }
    /* Hero Section */
    .hero{
        padding-top: 100px;
    }
    .hero h1{
        font-size: 58px;
    }
    /* Home Page - Streaming Section */
    #streaming{
        padding: 0 15px;
    }
    .streaming-steps .step-container{
        flex-wrap: wrap;
        /* width: 100%; */
        justify-content: center;
    }
    .streaming-steps .step-container div.border{
        display: inline;
        display: none;
        margin: 0;
        padding: 0;
    }

    /* Product Detailing Page whose the css file is shop.css */
    .section-p1 {
        padding: 20px;
    }
    #prodetails{
        display: flex;
        flex-direction: column;
    }
    #prodetails .single-pro-image{
        width: 100%;
        margin-right: 0px;
    }
    #prodetails .single-pro-details{
        width: 100%;
    }
    
    /* Footer SEction */
    footer .row{
        text-align: center;
    }
    footer .row .col-md-4{
        width: 50% !important;
    }
    footer .row .col-md-4:last-child{
        width: 100% !important;
    }
}