/* ==========================================================
   SERVICES
========================================================== */

.services-section{
    background:var(--section-lighter);
}

.service-card{
    position:relative;
    display:flex;
    flex-direction:column;
    height:100%;
    padding:2.2rem;
    background:#ffffff;
    border:1px solid #e9eef5;
    border-radius:var(--radius-lg);
    transition:all .35s ease;
}

/* for pixels
.service-card::before{
    content:"";
    position:absolute;
    top:18px;
    right:18px;
    width:8px;
    height:8px;
    background:var(--primary);
    box-shadow:
        10px 0 rgba(37,99,235,.35),
        0 10px rgba(37,99,235,.35),
        10px 10px var(--primary);

    opacity:.18;
    transition:.35s;
}*/

.service-card h4 {
   color:#0f172a;
}

.service-card p{
    color:var(--text-muted);
    line-height:1.8;
    margin-bottom:1rem;
    flex-grow:1;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow-md);
}

.service-arrow{
    margin-top:auto;
    display:flex;
    justify-content:flex-end;
}

.service-arrow i{
    font-size:1.25rem;
    color:#94a3b8;
    transition:.35s;
}

.service-card:hover .service-arrow i{
    color:var(--primary);
    transform: translate(4px,-4px);
}

.service-title{
    display:flex;
    align-items:center;
    gap:1rem;
    margin-bottom:1.2rem;
}

.service-title i{
    font-size:2rem;
    color:var(--primary);
}

@media (max-width:991.98px){

    .service-card{
        padding:2rem;
    }

}

@media (max-width:767.98px){

    .services-section{
        padding:90px 0;
    }

    .service-card{
        padding:1.75rem;
    }

    .service-icon{
        width:64px;
        height:64px;
    }

    .service-icon i{
        font-size:1.75rem;
    }

}