* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   }
   body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #e0dedea8;
    
   }
   a {
    text-decoration: none;
   }
   li {
    list-style: none;
   }

   /* NAVBAR STYLING STARTS */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    /* position: fixed; */
    width: 100%;
    background-color: #00b61200;
    color: #fff;
   }

   .donate {
       background-color: #200303a8;
       padding: 7px;
       border-radius: 3px;
   }

   .nav-links a {
    color: rgb(0, 0, 0);
   }
   /* LOGO */
   .logo {
    font-size: 32px;
   }
   /* NAVBAR MENU */
   .menu {
    display: flex;
    gap: 1em;
    font-size: 18px;
   }
   .menu li:hover {
    background-color: #00b613;
    border-radius: 5px;
    animation-duration: 0.5s;
    transition: all 0.5s ease-in-out;
    transition: 0.3s ease;
   }
   .menu li {
    padding: 5px 14px;
   }
   /* DROPDOWN MENU */
   .services {
    position: relative; 
   }
   .dropdown {
    background-color: #00b613;
    padding: 1em 0;
    position: absolute; /*WITH RESPECT TO PARENT*/
    display: none;
    border-radius: 8px;
    top: 35px;
   }
   .dropdown li + li {
    margin-top: 10px;
   }
   .dropdown li {
    padding: 0.5em 1em;
    width: 8em;
    text-align: center;
   }
   .dropdown li:hover {
    background-color: #4c9e9e;
   }
   .services:hover .dropdown {
    display: block;
   }
   

   /*RESPONSIVE NAVBAR MENU STARTS*/
/* CHECKBOX HACK */
input[type=checkbox]{
    display: none;
   } 
   /*HAMBURGER MENU*/
   .hamburger {
    display: none;
     font-size: 24px;
     color: rgb(0, 0, 0);
    user-select: none;
   }
   /* APPLYING MEDIA QUERIES */
   @media (max-width: 768px) {
   .menu { 
    display:none;
    position: absolute;
    background-color:#0083ff;
    right: 0;
    left: 0;
    text-align: center;
    padding: 16px 0;
   }
   .menu li:hover {
    display: inline-block;
    background-color:#4c9e9e;
    transition: 0.3s ease;
   }
   .menu li + li {
    margin-top: 12px;
   }
   input[type=checkbox]:checked ~ .menu{
    display: block;
   }
   .hamburger {
    display: block;
   }
   .dropdown {
    left: 50%;
    top: 30px;
    transform: translateX(35%);
   }
   .dropdown li:hover {
    background-color: #4c9e9e;
   }
   }

    
   
     

    /* NAVBAR STYLING ENDS */

    /* HEADER */



    .section-products {
        width: 85%;
         margin: auto;
         margin-top: 50px;
    }

   .hero h1{
     font-weight: bold;
    color: #181515;
    font-size: 70px;
    text-align: center;
    padding-top: 220px;
     }

    .hero{
        background-image: url("https://images.unsplash.com/photo-1601924994987-69e26d50dc26?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1470&q=80");
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 50vh;
    } 

    
   #price{
       float: right;
       color: rgb(0, 75, 7);
   }


   /* Banner */

    #banner{
        width: 100%;
        display: flex;
        height: 40vh;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        background-color: #00b613;
        background-image: url("https://www.incimages.com/uploaded_files/image/1920x1080/getty_522735456_249841.jpg");
        background-size: cover;
        background-position: center;
         margin-top: 50px;         
 
    }

    #banner h4{
        font-size: 1.5em;
        font-weight: bold;
        color: #fff;
        margin-top: 30px;
    }

    #banner h2{
        font-size: 3em;
        font-weight: bold;
        color: #fff;
     }

     #banner span{
         font-weight: bold;
        color: rgb(255, 19, 19);
     }

     #banner button{
        background-color: #00b613;
        color: #fff;
        padding: 10px;
        border-radius: 3px;
        border: none;
        margin-top: 30px;
        font-size: 2em;
        margin-left: 50px;
        margin-bottom: 1em;
    }

    #banner button:hover{
        background-color: #0083ff;
        color: #ffffff;
        transition: 0.3s ease;
     }


     /* Small Banner */ 
     #sm-banner{
         display: flex;
          justify-content: space-between;
          flex-wrap: wrap;
      }

     #sm-banner .banner-box{
        display: flex;
        height: 40vh;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        background-color: #00b613;         
        padding: 30px;
      }

      .banner-box{
        width: 650px;
        background-image: url("/images/Sm\ Banner\ Bac1.png");
        background-size: cover;        
        background-position: center;
      }

      #sm-banner .banner-box2{
        display: flex;
        height: 40vh;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        background-color: #00b613;         
        padding: 30px;
      }

      .banner-box2{
        width: 650px;
        background-image: url("/images/Sm\ Banner\ Bac3.png");
        background-size: cover;        
        background-position: center;
      }


      
        #sm-banner .banner-box h4{
            font-size: 1.5em;
            font-weight: normal;
            color: #fff;
            margin-top: 30px;
        }

        #sm-banner .banner-box h1{
            font-size: 3em;
            font-family: Helvetica, arial, sans-serif;
            font-weight: bold;
            color: rgb(255, 255, 255);
         }

         #sm-banner .banner-box span{
             font-weight: bold;
            color: #ebebeb;
         }

        .banner-box button{
            font-size: 13px;
            margin-top: 10px;  
            font-weight: bold;
            color: #fff;
            padding: 10px 18px;
            background-color: transparent;
            cursor: pointer;
            border: 1px solid #fff;
            transition: 0.3s;
        }

        .banner-box button:hover{
            background-color: #fff;
            color: #00b613;
            transition: 0.3s;
        }

        #sm-banner .banner-box:hover button{
            background-color: #fff;
            color: #00b613;
            transition: 0.3s;
        }

        #banner3{
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
              padding: 0 80px;
        }

        #banner3 .banner-box1{
             display: flex;
             min-width: 450px;
            height: 25vh;
            padding: 20px;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
              background-image: url("https://cdn.statically.io/img/www.shopkick.com/wp-content/uploads/2020/02/shutterstock_147043022.jpg?quality=100&f=auto");
            background-size: cover;
            background-position: center;
            margin-top: 50px;  
            margin-bottom: 20px;;            
        }

        #banner3 .banner-box1a{
            background-image: url("https://cdn.statically.io/img/www.shopkick.com/wp-content/uploads/2020/02/shutterstock_147043022.jpg?quality=100&f=auto");
        }        

        #banner3 .banner-box2b{
            background-image: url("https://www.pinkvilla.com/imageresize/unknown-5_15.jpeg?width=752&format=webp&t=pvorg");
        }   

        #banner3 .banner-box3c{
            background-image: url("https://images.unsplash.com/photo-1601924994987-69e26d50dc26?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1470&q=80");
        }   
    

        #banner3 h1{
            font-size: 3em;
            font-weight: bold;
            align-items: flex-start;
            color: #fff;
         }

         #banner3 h3{
            font-size: 1.5em;
            font-weight: bold;
            color: #808080;
            margin-top: 20px;
         }

         .col h4, p{
             margin-top: 5px;
         }
         .social-media h4{
             margin-top: 20px;
         }

       
         .social-icon{
             margin-top: 5px;
             display: flex;
         }

         .social-icon i{
             padding: 5px;
         }

         .social-icon  .fa-facebook-f:hover{
             color: #4267B2;
             transition: 0.3s;
         }

         .social-icon  .fa-twitter:hover{
            color: #1DA1F2;
            transition: 0.3s;
        }

        .social-icon  .fa-instagram:hover{
            color: #C13584;
            transition: 0.3s;
        }

        .social-icon  .fa-youtube:hover{
            color: #FF0000;
            transition: 0.3s;
        }

        .pro{
            background-color: #006e3b10;
        }

   

         #container{
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
          }

         .row img{
                width: 150px;
                height: 50px;
                margin-right: 10px;
         }

         footer{
             background-color: #ddddddce;
             display: flex;
             flex-wrap: wrap;
             justify-content: space-between;
         }

         footer .col{
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            margin-bottom: 20px;
         }

         footer .col a{
            color: #1b1b1b;
            margin-top: 10px;
         }

           .copyright{
             text-align: center;
             padding: 20px;
         }

         /* Media Queries */


         @media screen and (max-width: 768px){
            .banner{
                width: 100%;
                margin-right: 0;
                 text-align: center;
                justify-content: center;
                align-items: center;
                }
        }

        @media screen and (max-width: 768px){
            .pro-container{
                width: 100%;
                margin-left: 40px;
                }
        }

        @media screen and (max-width: 768px){
            .peoduct1 .pro {
                width: 100%;
                 }
        }

         
        @media screen and (max-width: 768px){
            body{
                width: 100%;
                  }
        }

         @media screen and (max-width: 768px){
            .banner{
                width: 100%;
                margin-right: 0;
                 text-align: center;
                justify-content: center;
                align-items: center;
                }
        }


        @media screen and (max-width: 768px){
            #banner h4{
                text-align: center;
                justify-content: center;
                font-size: 15px;
                color: #ffffff;
               }
        }

        @media screen and (max-width: 768px){
            #banner h2{
                text-align: center;
                justify-content: center;
                font-size: 25px;
                margin: 20px;
                color: #ffffff;
               }
        }

        @media screen and (max-width: 768px){
            #banner button{
                text-align: center;
                justify-content: center;
                font-size: 25px;
                margin: 20px;
                color: #ffffff;
               }
        }


         @media screen and (max-width: 768px){
            .pro{
                text-align: center;
                justify-content: center;
                align-items: center;
                flex-wrap: wrap;
             }
        } 

        @media screen and (max-width: 768px){
            footer{
                width: 100%;
                height: auto;
                 justify-content: center;
                align-items: center;
               }
        } 

        @media screen and (max-width: 768px){
            #banner3{
                 width: auto;
                height: auto;
                justify-content: center;
                }
        } 

        @media screen and (max-width: 768px){
            #banner3 h1{
                 width: auto;
                height: auto;
                text-align: center;
                margin-left: 50px;
                font-size: 2em;
                justify-content: center;
                }
        } 

        
        @media screen and (max-width: 768px){
            #banner3 h3{
                 width: auto;
                height: auto;
                text-align: center;
                margin-left: 50px;
                font-size: 1.5em;
                justify-content: center;
                }
        } 

        @media screen and (max-width: 768px){
            #sm-banner {
                width: 100%;
                 width: auto;
                height: auto;
                 justify-content: center;
                }
        } 

        @media screen and (max-width: 768px){
            .banner-box {
               margin-top: 15px;
                }
        } 

        @media screen and (max-width: 768px){
            .banner-box1 {
               margin: 15px;
                }
        } 



        /* Pagination */

        #paginaton{
             text-align: center;
          }

          #paginaton a{
            background-color: #06af00;
            padding: 15px 20px;
            color: #ffffff;
            border-radius: 4px;
            font-weight: bold;
          }

          #paginaton a:hover{
            background-color: #0055a5;
           }

           #paginaton a i{
               font-weight: bold;
               font-size: 16px;
            }


            /* Single Product */
            #prodetails{
                display: flex;
                margin-top: 20px;
            }

            .single-pro-details h3{
                font-size: 17px;
            }

            .single-pro-details h2{
                font-size: 30px;
                color: #000000;
                margin-top: 40px;
            }

            .single-pro-details h1{
                font-size: 50px;
                margin-top: 40px;
                color: #004b07;
            }

            #prodetails .single-pro-image{
                width: 50%;
                margin-right: 50px;
              }

              .small-image-group{
                display: flex;
                justify-content: space-between;
                cursor: pointer;
                }

                #prodetails .single-pro-details{
                    width: 50%;
                    margin-top: 30px;
                 }

                 #prodetails .single-pro-details select{
                     height: 40px;
                    border-radius: 4px;
                    display: block;
                    margin-top: 10px;
                    border: 1px solid #dddddd;
                    padding: 10px;
                    margin-bottom: 20px;
                 }

                 #prodetails .single-pro-details input{
                        height: 40px;
                        width: 50px;
                        border-radius: 4px;
                        padding-left: 10px;
                        font-size: 15px;
                        margin-right: 10px;
                         border: 1px solid #dddddd;
                  }

                  #prodetails .single-pro-details input:focus{
                        outline: none;
                  }

                  #prodetails .single-pro-details button{
                    height: 40px;
                    width: 100px;
                    border-radius: 4px;
                    background-color: #06af00;
                    color: #ffffff;
                    font-weight: bold;
                    font-size: 15px;
                    border: 1px solid #dddddd;
                    cursor: pointer;
                  }

                    #prodetails .single-pro-details button:hover{
                        background-color: #0055a5;
                    }

                    #prodetails .single-pro-details span{
                         color: #000000;
                         line-height: 25px;
                        margin-top: 10px;
                    }

                    #prodetails .small-img{
                         padding-left: 5px;
                    }

                     .detail h4{
                         margin-top: 20px;
                         font-size: 20px;
                     }

                     @media screen and (max-width: 768px){
                        #prodetails {
                            width: 100%;
                            text-align: center;
                           
                            display: flex;
                            flex-direction: column;
                            }

                            #prodetails .single-pro-image{
                                width: 100%;
                                margin: 0px;
                                }

                            #prodetails .single-pro-details{
                                width: 100%;
                                 }

                            /* #prodetails .single-pro-details option{
                                 margin-left: 50px;
                                 } */
                            }
                    
                            
    #about-header{
        display: flex;
        justify-content: center;
     
     }                             
    #about-header img{
    width: 50%;
    height: auto;
    }

    #about-header h2{
        font-size: 50px;
        margin-top: 50px;
        color: #000000;
        margin-left: 20px;
    }

    #about-header p{
        font-size: 20px;
        color: #000000;
        margin-left: 20px;
    }

    #about-header marquee{
        width: 100%;
        align-items: center;
        margin-top: 40px;
        margin-left: 20px;
    }

    @media (max-width: 477px){
        #about-header {
            flex-direction: column;
        }

        #about-header img{
            width: 100%;
            height: auto;
            margin-top: 20px;
        }

        #about-header h2{
            font-size: 30px;
            margin-top: 30px;
            color: #000000;
            font-weight: bold;
            margin-left: 20px;
        }

        .hero h1{
            font-size: 50px;
            margin-top: 30px;
            color: #818181;
            margin-left: 20px;
        }

        #about-header p{
            font-size: 15px;
            color: #000000;
            margin-left: 20px;
        }

        #about-header marquee{
            align-items: center;
            margin-top: 20px;
            margin-right: 20px;
         }
    }