/* ==========================================
   BENEFITS
========================================== */

.benefits-section{
    background:#EEF0F8;
    padding:100px 0;
}

.benefits-section *{
    box-sizing:border-box;
}

.benefits-section .container{
    max-width:1400px;
    margin:auto;
    padding:0 60px;
}

/* Section Heading */

.section-head{
    text-align:center;
    max-width:760px;
    margin:0 auto 70px;
}

.section-head .label{
    color:#F47B20;
    font-size:16px;
    font-weight:800;
    letter-spacing:.15em;
    text-transform:uppercase;
    margin-bottom:16px;
}

.section-head h2{
    color:#002B6B;
    font-size:44px;
    line-height:1.2;
    margin:0 0 20px;
}

.section-head p{
    color:#5B6E91;
    font-size:17px;
    line-height:1.8;
}

/* Grid */

.benefit-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* Card */

.benefit-card{
    background:#fff;
    border-radius:22px;
    padding:35px 30px;
    box-shadow:0 12px 35px rgba(0,43,107,.08);
    transition:.3s;
    height:100%;
}

.benefit-card:hover{
    transform:translateY(-8px);
    box-shadow:0 22px 45px rgba(0,43,107,.15);
}

.benefit-icon{
    width:70px;
    height:70px;

    border-radius:50%;

    background:#fff;
    border:2px solid #F47B20;

    color:#F47B20;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:30px;
    font-weight:600;

    margin-bottom:25px;

    transition:all .3s ease;
}

.benefit-card:hover .benefit-icon{
    background:#F47B20;
    color:#fff;
    border-color:#F47B20;
}

.benefit-card h3{
    color:#002B6B;
    font-size:24px;
    margin-bottom:15px;
}

.benefit-card p{
    color:#5B6E91;
    font-size:16px;
    line-height:1.8;
    margin:0;
}

/* Responsive */

@media(max-width:1100px){

    .benefit-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .benefits-section{
        padding:70px 0;
    }

    .benefits-section .container{
        padding:0 24px;
    }

    .section-head{
        margin-bottom:50px;
    }

    .section-head h2{
        font-size:34px;
    }

    .section-head p{
        font-size:16px;
    }

    .benefit-grid{
        grid-template-columns:1fr;
        gap:24px;
    }

    .benefit-card{
        padding:30px;
    }

}