.nav-link {
  color: #000000 !important;
}
.active>.nav-link, .nav-link:hover {
  color: #000000 !important;
}

.hero-wrapper {
  padding: 8rem 0;
}
.bg-hero {
  position: absolute;
  background-image: url('../img/bg-products.jpg');
  background-attachment: fixed;
  background-position: 50% 50%;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 1;
}
.hero-text {
  z-index: 999;
}

.swiper-container {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: transparent;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.swiper-button-next, .swiper-button-prev {
  color: var(--color-primary);
}

.product-img {
  transition: 0.5s all ease-in-out;
}

.product-img:hover {
  transform: scale(1.5);
}