Font not loading [closed]

I wanted more info about this but i can’t comment here because i don’t have enough reputation, i may have a solution for you.

First, your font flexslider-icon works, but your media queries hide it on screen with more than 860px.

On screens more than 860px arrows become transparent and move out of slider. Here it’s a simple solution.

Make always visible:

On flexslider.css Replace:

.flex-direction-nav .flex-next {
    right: -50px;
    text-align: right;
}

.flex-direction-nav .flex-prev {
    left: -50px;
}

with this:

.flex-direction-nav .flex-next {
    right: 10px;
    text-align: right;
    opacity: 1;
}

.flex-direction-nav .flex-prev {
    left: 10px;
    opacity: 1;
}