.chevron-link{
    display: inline-block;
    font-weight:500;
    text-decoration: none;
    position: relative;
    padding-left: 1rem;
    color:#ec0000;
}
.chevron-link:before {
    font-family: 'Material Icons';
    font-size: 24px;
    display: inline-block;
    line-height: 1;
    content: "\E315";
    position: absolute;
    top: -0.025em;
    left: -.35em;
    transition: left 0.25s ease-out;
}
.chevron-link:hover:before {
    left: -.1em;
}