/* For more than medium screen */
@media (max-width: 1002px) {
    #header{
        padding: 0px 35px;
    }
}
/* For Medium Screen Devices */
@media (max-width: 799px) {
    #second-head {
        padding: 5px 90px;
    }

    #header{
        padding: 20px 50px;
    }

    #navbar {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        position: fixed;
        top: 0;
        right: -300px;
        height: 100vh;
        width: 300px;
        background-color: #ffffff;
        box-shadow: 0 40px 60px rgba(0, 0, 0, 0.1);
        padding: 80px 0 0 10px;
        transition: 0.3s;
    }

    #navbar.active {
        right: 0;
    }

    #close {
        display: initial;
        position: absolute;
        top: 30px;
        left: 30px;
        color: #222;
        font-size: 26px;
    }

    #navbar li {
        margin-bottom: 20px;
    }

    #mobile {
        display: flex;
        align-items: center;
    }

    #mobile i {
        cursor: pointer;
        color: #1a1a1a;
        font-size: 24px;
        padding-left: 20px;
    }


    /* Home Page */
    #home-page #hero {
        background-image: linear-gradient(to top, #30cfd0 0%, #330867 100%);
        height: auto;
        padding: 30px 0;
    }

    #hero .content {
        position: static;
        color: #fff;
        padding: 25px 40px;
    }
    .offcanvas-body>div{
        justify-content: center!important;
        flex-wrap: wrap;
    }

    /* Product Page */
    #product-banner {
        padding: 0px 30px;
        height: 25vh;
    }

    /* About Page */
    #about-banner {
        padding: 0 40px;
        height: 25vh;
    }

    /* Contact Page */
    #contact-banner {
        padding: 0 30px;
        height: 25vh;
    }
    #contact-page .support img {
        width: 100%;
    }

    /* Contact Page whose the css file is contact.css */
    #form-details form{
        width: 100%;
        padding: 30px 30px;
    }

    /* More Pages */
    #terms-page #terms-banner,
    #privacy-page #privacy-banner,
    #refund-page #refund-banner,
    #disclaimer-page #disclaimer-banner {
        padding: 0 30px;
        height: 25vh;
    }
}

/* For Small Devices */
@media (max-width: 477px) {
    #home-page #hero {
        height: 100%;
    }

    #header {
        padding: 0px 30px;
    }

    #second-head {
        padding: 5px 50px;
    }

    #home-page #hero {
        padding: 20px 0;
    }
    #hero .content img {
        max-width: 66px;
    }

    #hero .content .features {
        width: 100%;
        justify-content: space-between;
    }

    #hero .content .features div {
        display: flex;
        column-gap: 10px;
        align-items: center;
        width: 100%;
    }

    .section-p1 {
        padding: 40px 40px;
    }

    #home-explore{
        justify-content: center;
    }

    /* Product Page */
    #upper-section-p{
        justify-content: center;
    }
    #upper-section-p form{
        width: 100%;
    }
    #product-banner {
        color: black;
        padding: 20px 30px;
        height: auto;
        background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    }
    #product-banner p{
        color: black;
    }

    /* About Page */
    #about-banner {
        padding: 0 30px;
        height: 20vh;
    }

    /* Contact Page */
    #contact-banner {
        padding: 20px 30px;
        height: auto;
        background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    }

    /* More Pages */
    #terms-page #terms-banner,
    #privacy-page #privacy-banner,
    #refund-page #refund-banner,
    #disclaimer-page #disclaimer-banner {
        padding: 0 30px;
        height: 20vh;
    }

    /* Contact Page whose the css file is contact.css */
    #form-details{
        /* margin: 10px; */
        padding: 30px 0px;
        margin-top: 0;
    }
    #form-details form{
        width: 100%;
        margin-bottom: 10px;
    }
    #contact-page ul{
        column-gap: 15px;
        row-gap: 8px;
    }
    #contact-page ul li{
        margin-bottom: 5px;
    }

    .main-foot{
        text-align: center;
    }
    .main-foot .foot-inquiry{
        justify-content: center;
    }
}