#hero {
  background-image: url("https://fkbspices.com/Images/Jpegs/spices-bg.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.product-card {
  background-color: #efe8e5;
  border-radius: 1rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 2rem 1rem 0 1rem;
  margin-top: 3.5rem;
}
.product-img-wrapper {
  position: absolute;
  top: -5rem;
  left: -0.2rem;
  width: 100%;
  display: flex;
  justify-content: center;
}

@media only screen and (min-width: 992px) {
  .product-img-wrapper {
    top: -6rem;
  }
  .product-card {
    margin-top: 6rem;
  }
}

.product-img {
  width: 50%;
  max-height: 150px;
  object-fit: scale-down;
  border-radius: 1rem;
}
.product-title {
  margin-top: 1rem;
}
.product-cta {
  position: absolute;
  bottom: -2.7rem;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 1rem 0;
}
