/* Responsive Design */
@media (max-width: 768px) {
  #home h1 {
    font-size: 2.5rem;
  }

  #home p {
    font-size: 1rem;
  }

  /* .home-img {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    border-radius: 0;
    margin: 0;
  } */

  #home .container {
    position: absolute;
    z-index: 2;
    text-align: center;
    width: 100%;
    color: white;
  }

  #home::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
  }

  #banner h1 {
    font-size: 2rem;
  }

  .product {
    margin-bottom: 20px;
  }

  .footer-one {
    text-align: center;
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  #home {
    height: 90vh;     /* this is to change the view hight for small size  */
  }

  #home h1 {
    font-size: 2rem;
  }

  #banner {
    height: 50vh;
  }

  #banner h1 {
    font-size: 1.8rem;
  }

  .navbar-nav {
    text-align: center;
  }

  .nav-link {
    margin: 5px 0;
  }
}
/* CENTER MENU ON LARGE SCREEN */
@media (min-width: 992px) {
  .navbar-collapse {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* MOBILE CLEANUP */
@media (max-width: 991px) {
  .navbar-collapse {
    background: #fff;
    padding: 20px;
    margin-top: 10px;
    border-radius: 10px;
  }

  .navbar-nav {
    text-align: center;
  }

  .nav-link {
    color: #333 !important;
  }

  .nav-link {
    margin: 10px 0;
  }
}