.partner-row img{
    max-height: 160px;
    width: auto;
}
.partner-row img[src$=".svg"]{
    width: 250px;
}
.partner-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;
    }
}
.partner-row a:hover::before,
.partner-row a:focus::before{
    width: 100%;
}