/*======================================================
Website Style
======================================================*/

.style-card{

    position:relative;

    background:#fff;

    border:2px solid #e8edf5;

    border-radius:22px;

    padding:35px;

    height:100%;

    cursor:pointer;

    overflow:hidden;

    transition:all .25s ease;

}


.style-icon{

    width:72px;

    height:72px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#eef5ff;

    color:var(--primary);

    font-size:30px;

    margin-bottom:25px;

    transition:.25s;

}

.style-card.active .style-icon{

    background:var(--primary);

    color:#fff;

}

.style-card h4{

    font-weight:700;

    margin-bottom:12px;

}

.style-card p{

    color:#6c757d;

    min-height:60px;

}

.style-card small{

    display:block;

    font-weight:600;

    margin-bottom:12px;

    color:#999;

    text-transform:uppercase;

    letter-spacing:.8px;

}

.style-card ul{

    list-style:none;

    padding:0;

    margin:0;

}

.style-card ul li{

    margin-bottom:8px;

    position:relative;

    padding-left:22px;

}

.style-footer{

    margin-top:25px;

}