.ft-menu-link {
    color: #fff;
}

.ft-menu-link .ux-menu-link__link {
    color: #fff !important;
    text-transform: uppercase;
}

.ft-menu-link .ux-menu-link__text {
    position: relative;
    display: inline-block;
    padding-bottom: 3px;
    font-size: 14px;
}

.ft-menu-link .ux-menu-link__text::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #fff;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.25s ease;
}


.ft-menu-link.ux-menu-link--active .ux-menu-link__text::after,
.ft-menu-link:hover .ux-menu-link__text::after {
    transform: scaleX(1);
}