/*=========================================
Services
=========================================*/

.bilin-services{

    padding:120px 0;

    background:#F8FBFD;

}

.section-header{

    text-align:center;

    max-width:760px;

    margin:0 auto 70px;

}

.section-header h2{

    font-size:46px;

    margin:20px 0;

}

.section-header p{

    color:#666;

    line-height:2;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.service-card{

    background:#fff;

    border-radius:22px;

    padding:45px 35px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    transition:.35s;

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(0,0,0,.12);

}

.service-icon{

    width:85px;

    height:85px;

    margin:0 auto 25px;

    border-radius:50%;

    background:#E8F8FD;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:36px;

}

.service-card h3{

    margin-bottom:15px;

    color:#0F8FB5;

    font-size:24px;

}

.service-card p{

    color:#666;

    line-height:2;

}

@media(max-width:991px){

    .services-grid{

        grid-template-columns:1fr;

    }

}