*{
    margin: 0%;
    padding: 0%;
    
}
html{
  scroll-behavior: smooth;
}
:root{
    --navbar-height: 59px;
}

#navbar{
    display: flex;
    align-items: center;
}
#logo{
margin: 34px 45px;
}
#logo img{
height: 80px;
    margin: 3px 6px;
    
}
#navbar{
    position: absolute;
}
#navbar ul{
    display: flex;
}
#navbar::before{
    content: "";
    background-color: black;
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: -1;
    opacity: .4;
}
#navbar ul li{
   list-style: none;
   font-size: 1.3rem;

}
#navbar ul li a{
    color: white;
    display: block;
    padding: 3px 22px;
    border-radius: 20px;
    text-decoration: none;
}
#navbar ul li a:hover{
    color: rgb(7, 7, 7);
   background-color: white;}
   #home{
    display: flex;
    flex-direction: column;
    padding: 3px 200px;
    height: 750px;
    justify-content: center;
    align-items: center;
   }
   
  #home::before{
    content: "";
    position: absolute;
    background: url(../10.jpeg)no-repeat center center/cover;
    height: 100%;
    width: 100%;
    z-index: -1;
    opacity: 5;
  }
  #home h1{
    font-size: 2.8rem;
    color: rgb(14, 13, 13);
    text-align: center;
  }
  #home h2{
    font: 1.8em;
    color: rgb(5, 5, 5);
  }
  #home p{
    font-size: 1.5rem;
    color: rgb(7, 7, 7);
    font-style: italic;
    font-weight: bold;
  
    
  }
  /*product*/
  #product{
    margin: 34px;
    display: flex;
   

  }
  #product .box{
    border: 2px solid red;
    margin: 3px 6px;
    width: 380px;
    padding: 34px;
    border-radius: 28px;
  
  }
  #product::before{
    content: "";
    position: absolute;
    background: url(all.jpg)no-repeat center center/cover;
    height: 80%;
    width: 80%;
    z-index: -2;
    opacity: .5;
  }
  #product .box img{
    height: 100px;
    margin: auto;
    display: block;
  }
  #aboutus{
margin: 34px;
    display: flex;

  }
  .aboutus .box{
    padding: 2px;
    margin: 10px;
   
  }
  .aboutus .box img{
    height: 380px;
    margin: auto;
    display: block;}

 .aboutus p{
  padding: 34px;
 }
 /* contect css */
 #contact{
  position: relative;

 }
 #contact::before{
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -1;
  opacity: .7;
  background: url(../background.png)no-repeat center center/cover;
}
#contact-box{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 34px;
}
#contact-box input,
#contact-box textarea{
  width: 100%;
  padding: .5rem;
}
#contact-box form{
  width: 30%;
  
}

 
/* footer css */
#footer{
  background-color: rgb(15, 13, 13);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
  /*utility classes*/
  .h-primary{
    font-size: 2.5rem;
    padding: 12px;
  }
  .h-secondary{
    font-size: 1.5rem;
    padding: 12px;
  }
  .center{
    text-align: center;
    
  }