.solutions-row a{
    position: relative;
    font-weight: 500;
    
    &::after{
        content: "\f054";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        padding-left: 10px;
    }
    &::before{
        content: '';
        width: 0%;
        height: 2px;
        background: var(--ice);
        position: absolute;
        bottom: -2px;
        left: 0;
        right: 0;
        -webkit-transition: all .5s;
        -o-transition: all .5s;
        transition: all .5s;
    }
}
.solutions-row a:hover::before,
.solutions-row a:focus::before{
    width: 100%;
}