/* Business model styles */
/* =========================
   BUSINESS MODEL SECTION
========================= */

.business-model{
    padding:100px 0;
    background:#ffffff;
}

/* =========================
   TIMELINE BOX
========================= */

.timeline-box{
    text-align:center;
    transition:.35s;
    padding:15px;
}

.timeline-box:hover{
    transform:translateY(-8px);
}

/* =========================
   CIRCLE ICON
========================= */

.circle{
    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    background:#22c55e;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin-bottom:18px;
    transition:.35s;
}

.timeline-box:hover .circle{
    background:#1e293b;
    transform:scale(1.08);
}




/* =========================
   TIMELINE TITLE
========================= */

.timeline-box h6{
    font-size:15px;
    line-height:1.6;
    font-weight:600;
    color:#1e293b;
    margin:0;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){

    .circle{
        width:80px;
        height:80px;
        font-size:30px;
    }
}

@media(max-width:768px){

    .timeline-box{
        margin-bottom:20px;
    }

    .circle{
        width:75px;
        height:75px;
        font-size:28px;
    }

    .timeline-box h6{
        font-size:14px;
    }
}

@media(max-width:576px){

    .circle{
        width:70px;
        height:70px;
        font-size:26px;
    }
}