.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 200px;
  z-index: 1;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  top: 3.3rem;

}

.dropdown:hover .dropdown-content {
  display: block;
  opacity: 1;
  
}

.dropdown-content.product-dropdown {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 300px;
  max-height: 400px; /* Adjust height as needed */
  overflow-y: auto; /* Enable vertical scrolling */
  z-index: 1;
  left: -4rem;
  opacity: 0;

  transition: opacity 0.3s ease, transform 0.3s ease;
  top: 3.3rem;
}

.dropdown:hover .dropdown-content.product-dropdown {
  display: block;
  opacity: 1;
  /* transform: translateY(0); */
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
 font-family: Roboto;
    font-size: 16px;
    font-weight: 600;
    line-height: 18.75px;
    text-align: left;
}

.dropdown-content a:hover {
  background-color: #ddd;
  color: #003b4d;
}


@media screen and (max-width: 1024px) {
  .dropdown-toggle {
      display: block !important;
  }
  .dropdown-content {
      display: none !important;
  }
  .dropdown-toggle:hover .dropdown-content {
      display: none !important;
  }
}

