/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .icon-box {
    margin-bottom: 20px;
    text-align: center;
}

.features .icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    margin-bottom: 20px;
    transition: 0.5s;
    overflow: hidden;
    box-shadow: 0px 0 25px rgba(0, 0, 0, 0.15);
}

    .features .icon i {
        line-height: 0;
        color: #037844;
        font-size: 34px;
    }

.features .icon-box:hover .icon {
    box-shadow: 0px 0 25px rgba(0, 111, 190, 0.3);
}

.features .title {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 18px;
    position: relative;
    padding-bottom: 15px;
}

    .features .title a {
        color: #444444;
        transition: 0.3s;
    }

        .features .title a:hover {
            color: #006fbe;
        }

    .features .title::after {
        content: "";
        position: absolute;
        display: block;
        width: 50px;
        height: 2px;
        background: #006fbe;
        bottom: 0;
        left: calc(50% - 25px);
    }

.features .description {
    line-height: 24px;
    font-size: 14px;
}
