/* FCT : Animations */

/* Opacity : Image hover*/
.fct-opacity figure {
    background: $blue;
    border-radius: 5px;
    img{
        margin: 0 !important;
        opacity: 1;
        transition: .3s ease-in-out;
    }
    &:hover img{
        opacity: .5;        
    }
}