* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth; 
  }
  
  
  .values::-webkit-inner-spin-button,
  .values::-webkit-outer-spin-button {
    -webkit-appearance: none;   margin: 0;
  }
  
  input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 1.5rem;
  }
  
  ::-webkit-scrollbar {
    width: 10px;
  }
  
  ::-webkit-scrollbar-track {
    border-radius: 20px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.25);
  }
  
  ::-webkit-scrollbar-thumb {
    border-radius: 0;
    background-color: rgb(17, 17, 17);
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background-color: rgb(41, 41, 41);
  }
  
  section {
    scroll-margin-top: 80px;
  }
  
  .banner-content {
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
  
  @media (max-width: 992px) {
  
    .main-image h1 {
      padding-bottom: 3rem;
    }
  
    .navbar {
      padding: 0 25px;
    }
  
    nav {
      padding: 0;
      background-color: rgba(0, 0, 0, 0.8);
      /* backdrop-filter: blur(6px); */
      text-align: right;
    }
  
    .navbar {
      padding: 0.5rem 1rem;
    }
  
    .navbar-brand {
      padding: 0;
    }
 
    nav .nav-item {
      padding-right: 0 !important;
    }
  
   #services{
      transition: all .3s ease-in-out ;
    }
  
  
    #banner h1 {
      font-size: 3rem;
    }
  
    #banner h3 {
      font-size: 2rem;
    }
  
    .banner-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      align-content: center;
    }
  
  }
  
  @media (max-width: 576px) {
  
    #banner,
    #about,
    #products {
      background-attachment: scroll;
    }
  
    .main-image h1 {
      padding-bottom: 2rem;
    }
  
    .navbar {
      padding: 0.5rem 1rem;
    }
  
    .navbar-brand {
      padding: 0;
    }
  
    nav .nav-item {
      padding-right: 0 !important;
    }
  
    #banner h1 {
      font-size: 2.3rem;
    }
  
    #banner h3 {
      font-size: 1.2rem;
    }
  
    section {
      margin-top: 50px;
      scroll-margin-top: 80px;
    }
    
  
    .banner-content {
      display: flex;
      align-items: center;
      justify-content: space-around;
    }
  
  }
  
  /*--------NAVBAR--------*/
  
  nav {
    background-color: rgba(0, 0, 0, 0.8);
    transition: 0.28s ease;
  }
  
  .navbar-nav a {
    position: relative;
  }
  
  .navbar-nav a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    height: 1px;
    background: #fff;
    transition: 0.4s ease-in-out;
  }
  
  .navbar-nav a:hover::after {
    left: 0;
    width: 100%;
  }
  
  .main-logo {
    margin: .5rem 0;
    filter: brightness(1) invert();
    width: 4rem;
    transition: 0.2s ease-in-out;
  }
  
  .main-logo:hover {
    filter: brightness(1) invert(.7);
  }
  
  
  .navbar ul li {
    font-size: 1rem !important;
  }

  
  .sticky {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    padding-top: 0;
    padding-bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
  }

  .about-product{
    display: flex;
    justify-content: center;
    align-items: center;
  }
 
  #main-product-container{
    margin-top: 8rem;
  }

  .item:hover {
    filter: brightness(.8);
  }

  .item img {
    width: 150px;
  }

  
 
  /* FOOTER */
  
  footer {
    background-color: #191919;
  }
  
  .footer-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  
  .footer-item a {
    text-decoration: none;
  }
  
  .footer-item p {
    color: #fff;
    text-decoration: none;
    position: relative;
  }
  
  .footer-content {
    color: #fff;
    margin: 5rem 0;
  }
  
  .footer-item p:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    height: 1px;
    background: #fff;
    transition: 0.5s ease-in-out;
  }
  
  .footer-item p:hover::after {
    left: 0;
    width: 100%;
  }
  
  .copyright {
    background: #000;
  }
  
  .copyright-link {
    color: #fff;
  }
  
  .copyright-link:hover {
    color: #fff;
  }
  
  .copyright p {
    font-size: 12px;
  }
  

  
 
  
