/*==================================================
    COMPANY STORY
==================================================*/

.company-story{

    padding:100px 0;

    background:#ffffff;

}

/*==========================
    Image
==========================*/

.story-image{

    overflow:hidden;

    border-radius:20px;

    box-shadow:0 20px 60px rgba(0,0,0,.08);

}

.story-image img{

    width:100%;

    display:block;

    transition:.5s;

}

.story-image:hover img{

    transform:scale(1.05);

}

/*==========================
    Badge
==========================*/

.company-story .section-badge{

    display:inline-block;

    background:#e8f8ef;

    color:#00A651;

    padding:10px 22px;

    border-radius:40px;

    font-size:15px;

    font-weight:600;

    margin-bottom:20px;

}

/*==========================
    Heading
==========================*/

.company-story h2{

    font-size:44px;

    font-weight:800;

    color:#111827;

    line-height:1.25;

    margin-bottom:25px;

}

/*==========================
    Paragraph
==========================*/

.company-story p{

    font-size:17px;

    color:#6b7280;

    line-height:1.9;

    margin-bottom:18px;

}

/*==========================
    Statistics
==========================*/

.story-stats{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

    margin-top:40px;

}

.story-stat{

    flex:1;

    min-width:160px;

    background:#f8fafc;

    border:1px solid #e5e7eb;

    border-radius:16px;

    padding:25px;

    text-align:center;

    transition:.3s;

}

.story-stat:hover{

    transform:translateY(-6px);

    border-color:#00A651;

    box-shadow:0 12px 35px rgba(0,166,81,.12);

}

.story-stat h3{

    font-size:34px;

    color:#00A651;

    font-weight:800;

    margin-bottom:10px;

}

.story-stat span{

    display:block;

    color:#6b7280;

    font-size:15px;

    font-weight:500;

}

/*==========================
    Responsive
==========================*/

@media(max-width:992px){

    .company-story{

        padding:80px 0;

    }

    .company-story h2{

        font-size:36px;

        margin-top:35px;

    }

}

@media(max-width:768px){

    .company-story{

        padding:70px 0;

    }

    .company-story h2{

        font-size:30px;

    }

    .company-story p{

        font-size:16px;

    }

    .story-stats{

        flex-direction:column;

    }

    .story-stat{

        width:100%;

    }

}