How do I change/remove styling (top border) on main menu for active page and hovering (Avada Theme)

Go to you theme admin panel then Appearance > Editor. Then paste this code bellow into Stylesheet (style.css):

.fusion-main-menu .current_page_item > a {

    border-color: #000 !important;
}

.fusion-main-menu > ul > li > a:hover {
    color: #000 !important;
}

Hope it solve your problem