.nav-link{
    color: rgba(245, 245, 245, 0.897);
    transition: .4s;
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
    display: inline-block;
}

.nav-link:hover{
    color: #3CAA0D;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: #3CAA0D;
    transition: width 0.3s ease;
}
  
.nav-link:hover::after {
    width: 100%;
}

/* FOOTER */

footer {
    background-color: #343a40;
    color: #fff;
}

footer h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

footer a {
    color: #ddd;
    text-decoration: none;
}

footer a:hover {
    color: #3CAA0D;
    text-decoration: underline;
}

footer .social-icons a {
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

footer .social-icons a:hover {
    color: #3CAA0D;
}

footer .text-center {
    font-size: 0.875rem;
    color: #bbb;
}