.navbar {
  /*background: rgba(16,50,51,0.9);*/
}

/* Hero 1 */

#hero-1 {
  min-height: 100vh;
  padding-top: 90px;
  padding-bottom: 40px;
}

#hero-1 .card {
  border-style: none;
  color: #4f7234;
  background: rgba(255,255,255,0);
  transition: .6s;
}

#hero-1 .card .btn {
  opacity: 0;
}

#hero-1 .card:hover {
  transition: .8s;
  background: #4f7234;
  border-style: none;
  color: #f3f4e2;
  border-radius: 16px;
}

#hero-1 .card:hover .btn {
  transition: 1s;
  opacity: 1;
}

#hero-1 .card img {
  object-fit: contain;
  object-position: center;
  width: 100%;
}

/* Admin */

#product-form .product-preview-img {
  object-fit: contain;
  object-position: center;
  width: 100%;
  height: 200px;
}

