/*======================================================

                SERVICES LIST

======================================================*/

.services-list-section{

    padding:140px 0;

    background:#ffffff;

    position:relative;

    overflow:hidden;

}

.services-list-section::before{

    content:"";

    position:absolute;

    top:-180px;

    right:-180px;

    width:420px;

    height:420px;

    border-radius:50%;

    background:rgba(0,113,227,.05);

    filter:blur(80px);

}

.services-list-section::after{

    content:"";

    position:absolute;

    bottom:-180px;

    left:-180px;

    width:420px;

    height:420px;

    border-radius:50%;

    background:rgba(0,0,0,.03);

    filter:blur(80px);

}

.services-list-section .container-custom{

    position:relative;

    z-index:2;

}

/*======================================================

                HEADING

======================================================*/

.section-heading{

    text-align:center;

    max-width:760px;

    margin:0 auto 80px;

}

.section-subtitle{

    display:inline-block;

    color:#0071e3;

    font-size:14px;

    font-weight:700;

    letter-spacing:4px;

    text-transform:uppercase;

    margin-bottom:18px;

}

.section-heading h2{

    font-size:54px;

    font-weight:700;

    color:#111;

    line-height:1.15;

    margin-bottom:25px;

}

.section-heading p{

    font-size:18px;

    line-height:1.9;

    color:#6e6e73;

}

/*======================================================

                GRID

======================================================*/

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:32px;

}

/*======================================================

                CARD

======================================================*/

.services-list-card{

    background:#fff;

    border:1px solid #ececec;

    border-radius:30px;

    padding:45px 35px;

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.services-list-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:#0071e3;

    transform:scaleX(0);

    transition:.35s;

}

.services-list-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(0,0,0,.08);

    border-color:#d9d9d9;

}

.services-list-card:hover::before{

    transform:scaleX(1);

}

/*======================================================

                ICON

======================================================*/

.services-list-icon{

    width:82px;

    height:82px;

    border-radius:22px;

    background:#f5f5f7;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:30px;

    transition:.35s;

}

.services-list-icon i{

    font-size:34px;

    color:#111;

    transition:.35s;

}

.services-list-card:hover .services-list-icon{

    background:#0071e3;

}

.services-list-card:hover .services-list-icon i{

    color:#fff;

}

/*======================================================

                CONTENT

======================================================*/

.services-list-card h3{

    font-size:28px;

    color:#111;

    margin-bottom:18px;

}

.services-list-card p{

    color:#6e6e73;

    font-size:16px;

    line-height:1.9;

    margin-bottom:28px;

}

/*======================================================

                LINK

======================================================*/

.services-list-card a{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:#0071e3;

    font-size:16px;

    font-weight:600;

    transition:.3s;

}

.services-list-card a i{

    transition:.3s;

}

.services-list-card a:hover{

    color:#0056b3;

}

.services-list-card a:hover i{

    transform:translateX(6px);

}

/*======================================================

                RESPONSIVE

======================================================*/

@media(max-width:1200px){

    .section-heading h2{

        font-size:46px;

    }

}

@media(max-width:991px){

    .services-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .section-heading{

        margin-bottom:60px;

    }

    .section-heading h2{

        font-size:40px;

    }

}

@media(max-width:767px){

    .services-list-section{

        padding:90px 0;

    }

    .services-grid{

        grid-template-columns:1fr;

        gap:25px;

    }

    .services-list-card{

        padding:35px 28px;

    }

    .section-heading h2{

        font-size:32px;

    }

    .section-heading p{

        font-size:17px;

    }

}

@media(max-width:576px){

    .section-heading{

        margin-bottom:50px;

    }

    .section-subtitle{

        letter-spacing:3px;

        font-size:13px;

    }

    .section-heading h2{

        font-size:28px;

    }

}
.services-list-card{
    opacity:1 !important;
    visibility:visible !important;
    transform:none !important;
}

.services-list-section{
    opacity:1 !important;
}