.navbar-nav > li > a {
    position: relative;
}

.navbar-nav > li > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 0%;
    height: 2px;
    background-color: #2a7f7f;
    transition: 0.3s;
}

.navbar-nav > li > a:hover::after {
    width: 100%;
}