/* Custom Icons */
.fab.fa-huawei:before {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    background-image: url("../images/huawei-svgrepo-com.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    filter: brightness(0) saturate(100%) invert(1);
}

/* Override filter for download section where icons are red */
.download .app-btn .fab.fa-huawei:before {
    filter: brightness(0) saturate(100%) invert(15%) sepia(90%) saturate(6695%) hue-rotate(357deg) brightness(97%) contrast(91%);
}

/* Reset filter on hover in download section to match other icons */
.download .app-btn:hover .fab.fa-huawei:before {
    filter: brightness(0) saturate(100%) invert(1);
}