/*======================================================
BUSINESS INSIGHT
======================================================*/

.business-card{
    background:#1B2747;
    border-radius:18px;
    padding:22px;
    min-height:260px;
    height:auto;
}

.section-title{

    font-size:24px;
    font-weight:700;
    color:#fff;
    margin-bottom:18px;

}

.business-wrapper{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px;

}

.business-item{

    position:relative;

    background:#27365D;

    border:1px solid rgba(255,255,255,.05);

    border-radius:14px;

    padding:18px;

    height:165px;

    display:flex;

    flex-direction:column;

}

.item-label{

    color:#AFC2E8;

    font-size:13px;

    line-height:20px;

}

.item-name{

    margin-top:18px;

    color:#fff;

    font-size:18px;

    font-weight:700;

}

.item-value{

    margin-top:auto;

    color:#69BEFF;

    font-size:16px;

    font-weight:700;

}

.item-value.negative{

    color:#6EC1FF;

}

.item-icon{

    position:absolute;

    right:16px;
    bottom:16px;

    width:44px;
    height:44px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    background:rgba(124,92,255,.15);

}

.item-icon i{

    font-size:22px;

}