/* @import url("https://cdn.jsdelivr.net/npm/bootstrap@5.3.6/dist/css/bootstrap.min.css"); */
:root {
    --link-active-color: #288cff;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--bs-link-hover-color);
    border-bottom: 2px solid var(--bs-link-hover-color);
}

.dropdown:hover .dropdown-menu {
    display:block;
}

.nav-item-img {
  width: var(--bs-nav-link-font-size);
  height: var(--bs-nav-link-font-size);
}

.home-banner-background  {
  background-image: url("../img/home_banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
}

.product-banner-background {
  background-image: url("../img/product-bg.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
}



/* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */

/* Carousel base class */
.carousel {
  margin-bottom: 4rem;
}
/* Since positioning the image, we need to help out the caption */
.carousel-caption {
  bottom: 3rem;
  z-index: 10;
}

/* Declare heights because of positioning of img element */
.carousel-item {
  height: 40rem;
}