*{
    max-width: 100vw;
    padding: 0;
    margin: 0;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

html,body{
    padding: 0;
    margin: 0;
    max-width: 100vw;
    min-height: 100vh;
}

#nav {
    height: 11vh;
    width: 100vw;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    position: absolute;
    z-index: 1;
    top: 1vh;
}

#manu-bar{
    display: none;
    z-index: 1;
}

#manu-bar i{
    color: white;
    font-size: 4vh; 
}

#nav-part-1 {
   height: 10vh;
   width: 10vw;
}

#nav-part-1 img{
    height: 10vh;
    width: 5vw;
    border-radius: 50%;
}

#nav-part-2{
    display: flex;
    gap: 45px;
    align-items: center;
}

#nav-part-2 a{
    text-decoration: none;
    color: white;
}

#wh-logo{
    position: fixed;
    bottom: 4vh;
    right: 4vh;
    text-align: center;
}

#wh-logo img{
    width: 5vw;
}

#wh-logo a{
    text-decoration: none;
}

#wh-logo p{
    color: white;
    text-decoration: none;
    font-size: 1vw;
    background-color: #389616;
    border-radius: 50px;
    padding: 0.5vw;
}



#page-1{
    position: relative;
    min-height: 100vh;
    max-width: 100vw;
    display: flex;
}

#myVideo{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
    padding: 0;
}

#page-1-text{
    position: relative;
    height: 60vh;
    width: 80vw;  
    margin-top: 12vh;
}

#page-1-text h1{
    color: rgb(245, 222, 179);
    font-size: 8vw;
    text-transform: uppercase;
    padding: 20px;
    margin: 20px 10px 10px 20px;
    padding-bottom: 10px;
}

#page-1-text p{
    color: rgb(245, 222, 179);
    font-size: 2.2vw;
    text-transform: uppercase;
    padding: 5px;
    margin: 0px 0px 0px 25px;
} 

#page-2{
    min-height: 98vh;
    max-width: 100vw;
    margin-top: 2px;
}

#page-2 img{
    height: 100%;
    width: 100%;
    position: absolute;
    object-fit: cover;
    margin: 0;
    padding: 0;

}

#page_2_container{
    height: 85vh;
    display: flex;
    justify-content: center;
}


#page-2 h1{
    width: 50vw;
    color: rgb(255, 255, 255);
    font-size: 3.5vw;
    padding: 10px;
    text-align: center;
    position: relative;
    top: 8vh;
    left: 40vw;
}


#page-2 #image-gallry{
    height: 85vh;
    width: 30vw;
    padding: 10px;
    position: relative;
    right: 6vw;
    bottom: 6vh;
}



#page-2-intro{
    color: white;
    height: 70vh;
    width: 40vw;
    position: relative;
    top: 15vh;
    font-size: 3vh;
}

#page-2-intro a{
    text-decoration: none
}

#page-2-intro button{
    background-color: rgb(245, 222, 179);
    height: 5.5vh;
    width: 7.5vw;
    color: #23070b;
    font-size: 2.5vh;
    font-weight: 600;
    border-radius: 50px;
    position: relative;
    top: 5vh;
    cursor: pointer;
}

#page-3 {
    min-height: 100vh;
    max-width: 100vw;
    background-color: black;
    margin-top: 0.5px;
}

#page-3-intro{
    display: flex;
    justify-content: space-between;
    padding: 2vh 7vh;
}

#page-3-intro a{
    height: 4vh;
    text-decoration: none;
    color: black;
    font-size: 3.5vh;
    background-color: rgb(255, 255, 255);
    border-radius: 50px;
    padding: 1vh;
}

#page-3-intro h1{
    padding: 0px;
    text-transform: uppercase;
    color: white;
    font-size: 3.5vw;
}

#product-page{
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

#product-page .product{
    height: 40vh;
    width: 17vw;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-items: center;
    justify-content: center;
    background-color: rgba(74, 127, 142, 0.5);
    border-radius: 20px;
}

.product a{
    text-decoration: none;    
}

.product h3{
    color: white;
    font-size: 1.6vw;
    padding-left: 1vw;
}

.product img {
    height: 80%;
    width: 90%;
    border-radius: 20px 20px 0 0;
    margin-left: 0.8vw;
}

#page-4 {
    min-height: 85vh;
    max-width: 100vw;
    background-color: black; 
    margin-top: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#feedback_Form{
    height: 67vh;
    width: 50vw;
    background-color: rgba(50, 145, 145, 0.763);
    border-radius: 0 0 20px 20px;
}

#feedback_Form h1{
    color: white;
    text-align: center;
    padding: 10px;
    background-color: #2a2020;
    border-radius: 50px;
    margin-top: 5px;
}

#feedback_Form form{
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    padding: 20px;
    font-size: 20px;
    font-weight: 600;
}

#feedback_Form form input{
    font-size: 3.5vh;
    border-radius: 10px;
}

#SubButton{
    font-size: 2.5vh;
    border-radius: 50px;
    background-color: rgb(241, 235, 235);
    font-weight: 800;
    padding: 8px;
    border: 2px solid black;
}



/* footer */
  .footer {
    max-width: 100vw;
    height: 60vh;
    color: #fff;
    border-top: 1px solid rgb(255, 255, 255);
    margin: 0;
    padding: 0;
}

#footer_bg_video{
    width: 100%;
    height: 63%;
    object-fit: cover;
    position: absolute;
    margin: 0;
    padding: 0;
    
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 96vw;
    margin: 0 auto;
    position: relative;
    top: 5vh;
    text-align: center;
}

.footer-section {
    flex: 1;
    margin: 1vw;
    min-width: 15vw;
}

.footer-section h3 {
    font-size: 2.2vw;
    margin-bottom: 10px;
    color: rgb(241, 76, 76);

}

.footer-section p, .footer-section ul {
    font-size: 1.1vw;
    line-height: 1.6;
    margin: 0;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 5px 0;
}

.footer-section ul li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #131111;
    background-color: white;
}

.social-media a {
    display: inline-block;
    margin: 15px 25px 0px 10px;
    text-decoration: none;
    color: #fff;
    padding: 8px 12px;
    border: 1px solid #cc8b8b;
    border-radius: 50px;
    transition: all 0.3s;
}

.social-media a:hover {
    background-color: #ffffff;
    color: #111;
}


/* End footer */



@media screen and (max-width: 480px) {
    html,body{
        padding: 0;
        margin: 0;
        min-width: 100vw;
        min-height: 100vh;
    }
    
    #wh-logo{
        position: fixed;
        bottom: 2vh;
        right: 2vh;
        text-align: center;
    }
    
    #wh-logo p{
        font-size: 4vw;
        background-color: #389616;
        border-radius: 50px;
        padding: 0.5vw;
    }

    #wh-logo img{
        width: 15vw;
    }

    
    #nav {
        height: 10vh;
        width: 100vw;
        display: flex;
        flex-direction: column;
        text-align: center;
        position: absolute;
        /* z-index: 12; */
            
    }
    
    #nav-part-1 {
       height: 10vh;
       width: 100%;
       padding: 0vw;
       justify-content: center;
       align-items: center;
    }
    
    #nav-part-1 img{
        height: 9vh;
        width: 20vw;
        padding-top: 0.5vh;
     }

    #nav-part-2{
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        flex-direction: column;
        text-align: center;
        gap: 0;
        overflow: hidden;
        height: auto;
        width: 100%;
        background-color: rgba(41, 36, 32, 0.4);
        z-index: 99;
    }

    #nav-part-2 a{
        height: 100%;
        width: 100%;
        padding: 15px;
        font-size: 6vw;
        color:white;
        border: 1px solid rgb(205, 193, 193);
    }

    #manu-bar{
        display: block;
        position: absolute;
        right: 20px;
        
    }

    #nav-part-2{
        transition: all 0.5s;
    }

    #page-1{
        position: relative;
        height: 90vh;
    }
    
    #page-1-text{
        height: 60vh;
        width: 100vw;
        padding-top: 20vh;
        padding-left: 2vh;
    }
    
    #page-1-text h1{
        color: rgb(245, 222, 179);
        font-size: 16vw;
        text-transform: uppercase;
        padding: 0;
        margin: 0;
    }
    
    #page-1-text p{
        color: rgb(245, 222, 179);
        font-size: 8vw;
        text-transform: uppercase;
        padding: 0px; 
        margin: 0px 0px 0px 0px;
    }
    
    #page-2{
        min-height: auto;
    }

    #page-2 img{
        height: 100%;
        width: 100%;
        position: absolute;
        object-fit: cover;
    }
    
    #page_2_container{
        height: auto;
        flex-wrap: wrap-reverse;
    }

    #page-2 h1{
        width: 100vw;
        color: rgb(255, 255, 255);
        font-size: 11vw;
        padding: 0vw;
        text-align: center;
        position: relative;
        top: 1vh;
        left: 0vw;
    }

    
    #page-2-intro{
        color: white;
        height: 65vh;
        width: 100vw;
        position: relative;
        top: 1vh;
        font-size: 5vw;
        padding: 2vw;
        text-align: center;
    }

    #page-2 #image-gallry
    {
        height: 80vh;
        width: 100vw;
        padding: 0px;
        position: relative;
        top: 0vh;
        left: 0vw;
        border: 2px solid rgb(0, 0, 0);
    }
    
    #page-2-intro a{
        text-decoration: none
    }
    
    #page-2-intro button{
        background-color: rgb(245, 222, 179);
        height: 6vh;
        width: 32vw;
        color: #23070b;
        font-size: 5vw;
        font-weight: 900;
        border-radius: 50px;
        position: relative;
        top: 2vh;
        cursor: pointer;
    }
    
    #page-3 {
        min-height: 100vh;
        width: 100vw;
        background-color: black;
        margin-top: 2px;
    }
    
    #page-3-intro{
        display: flex;
        justify-content: space-between;
        padding: 2vh 1vh;
    }
    
    #page-3-intro a
    {
        text-decoration: none;
        color: black;
        background-color: white;
        border-radius: 50px;
        padding: 1vh;
        font-weight: 900;
    }
    
    #page-3-intro h1{
        padding: 0px;
        text-transform: uppercase;
        color: white;
        font-size: 5.5vh;
    }

    #product-page{
        padding: 10px;
        display: flex;
        flex-wrap: wrap;
    }
    
    #product-page .product{
        height: 38vh;
        width: 80vw;
        margin-bottom: 3vh;
        display: flex;
        align-items: center;
        justify-items: center;
        justify-content: center;
        background-color: rgba(74, 127, 142, 0.5);
        border-radius: 20px;
    }
    
    .product h3{
        font-size: 8vw;
        margin-left: 0vw;
    }
    
    .product img {
        height: 30vh;
        width: 72vw;
        border-radius: 20px 20px 0 0;
        margin-left: 0vw;
    }

    #product-page #product-6{
        height: 42vh;
        width: 80vw;
    }

    #product-page #product-6 img{
        padding-left: 4vw;
        padding-top: 1vh;
    }

    #product-page #product-6 h3{
        padding-left: 4vw;
    }

    #product-page #product-9{
        height: 41vh;
        width: 80vw;
    }

    #product-page #product-9 img{
        padding-left: 4vw;
        padding-top: 1vh;
    }

    #product-page #product-9 h3{
        padding-left: 4vw;
    }

    #page-4 {
        width: 100vw;  
    }
    
    #feedback_Form{
        height: 70vh;
        width: 95vw;
    }
    
    #feedback_Form h1{
        padding: 10px;
        border-radius: 50px;
        margin-top: 7px;
        font-size: 3.5vh;
    }

     #feedback_Form form textarea{
        width: 80vw;
     }
    
    #feedback_Form form input{
        font-size: 3vh;
        border-radius: 10px;
    }
    
    #SubButton{
        font-size: 2.5vh;
    }
    
    /* footer */
.footer {
    height: auto;
}

#footer_bg_video{
    height: 250%;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 100vw;
    margin: 0 auto;
    position: relative;
    top: 0vh;
    text-align: center;
    
}

.footer-section {
    flex: 1;
    margin: 20px;
    min-width: 200px;
}

.footer-section h3 {
    font-size: 10vw;
    margin-bottom: 10px;
    color: rgba(234, 23, 41, 0.742);
}

.footer-section p, .footer-section ul {
    font-size: 6vw;
    line-height: 1.6;
    margin: 0;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 5px 0;
}

.footer-section ul li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #131111;
    background-color: white;
}

.social-media a {
    display: inline-block;
    margin: 15px 25px 0px 10px;
    text-decoration: none;
    color: #fff;
    padding: 8px 12px;
    border: 1px solid #cc8b8b;
    border-radius: 50px;
    transition: all 0.3s;
}

.social-media a:hover {
    background-color: #ffffff;
    color: #111;
}


/* End footer */

}