 /* MENU */
.menu-link {
    position: relative;
    padding-bottom: 2px !important;
    color: #2b2b2b !important;
    font-weight: 500 !important;
    font-size: 1.1rem !important;
    margin-left: 15px !important;
}

.menu-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 2px;
    background-color: #2A58C7;
    transition: width 0.3s ease;
}
.menu-link:hover::after { width: 100%; }
.menu-link:hover { color: #2A58C7 !important; }

/* SOCIAL LINKS */
.social {
    font-size: 1.5rem;
    color: #2b2b2b;
    transition: 0.3s ease;
}
.social:hover {
    color: #2A58C7;
    transform: scale(1.2);
}