/* Nav link underline on hover */
.custom-hover {
  position: relative;
  color: inherit;
  text-decoration: none;
}

.custom-hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px; /* adjust as needed */
  width: 0;
  height: 2px;
  background-color: currentColor;
  transition: width 0.3s ease;
}

.custom-hover:hover::after {
  width: 100%;
}


p{
    color: #484F5B!important;
}

h1,h2,h3,h4,h5,h6{
    color: #141C25!important;
}
