﻿div.features{
    width:100%
}
    
div.feature{
    text-align:center;
    padding:15px;
    width:25%;
    transition:1s;
    opacity:0;
    cursor:pointer;
}

div.feature.large{
    width:33%;
}

div.feature.isVisible{
    opacity:1;
}

div.feature div.feature-box{
    background-color:#fff;
    border:1px solid #ddd;
    padding:15px;
}

div.feature-img{
    background-color:#881e38;
    background-position:center center;
    background-repeat:no-repeat;
    background-size:cover;
    transition:0.5s;
    width:120px;
    height:120px;
    color:#fff;
    margin:auto;
    padding:25px;
    border-radius:50%;
}

div.feature-img span[class^="ti-"]{font-size:70px}

div.feature:hover{
    -ms-transform: scale(1.05,1.05);
    transform: scale(1.05,1.05);
}

div.feature:hover div.feature-img{
    background-color:#ff9605;
}

div.feature h2{
    font-weight:300;
    font-size:28px;
    color:#881e38;
    line-height:26px;
}

div.feature p{
    text-align:center;
}

/* BREAKPOINT */
div.features.gt1024 div.feature:nth-child(4n+1) {clear: left}
div.features.gt1024 div.feature.large:nth-child(4n+1) {clear:none}
div.features.gt1024 div.feature.large:nth-child(3n+1) {clear: left}

div.features.gt560.lt1024 div.feature{width:33%}
div.features.gt560.lt1024 div.feature:nth-child(3n+1) {clear: left}

div.features.lt560 div.feature{width:100%}