.brand-card {
    &::after {
        position: absolute;
        content: "";
        width: 0;
        height: 4px;
        background-color: $primary;
        top: 0;
        left: 0;
        transition: .5s;
    }
    &:hover {
        background-color: $white;
        border-color: $white !important;
        box-shadow: $box-shadow-lg;
        a {
            color: $primary !important;
        }
        &::after {
            width: 100%;
        }
    }
}