/*====================================================
        HOW WE WORK
====================================================*/

.work-section{

    position:relative;

    padding:120px 0;

    overflow:hidden;

    background:
    radial-gradient(circle at top left,rgba(0,87,255,.10),transparent 30%),
    radial-gradient(circle at bottom right,rgba(0,184,255,.10),transparent 35%),
    linear-gradient(135deg,#ffffff 0%,#f7fbff 45%,#eef7ff 100%);

}

/* Decorative Blur */

.work-section::before{

    content:"";

    position:absolute;

    width:550px;

    height:550px;

    background:#0d6efd15;

    border-radius:50%;

    filter:blur(120px);

    top:-250px;

    left:-200px;

}

.work-section::after{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    background:#00b8ff18;

    border-radius:50%;

    filter:blur(120px);

    bottom:-220px;

    right:-200px;

}

.work-section .container{

    position:relative;

    z-index:10;

}

/*==============================
Heading
==============================*/

.work-heading{

    text-align:center;

    margin-bottom:80px;

}

.work-tag{

    display:inline-block;

    padding:12px 24px;

    border-radius:50px;

    background:#eaf5ff;

    color:#0d6efd;

    font-weight:700;

    font-size:14px;

    letter-spacing:1px;

    margin-bottom:20px;

}

.work-heading h2{

    font-size:48px;

    font-weight:800;

    color:#0A2540;

    margin-bottom:20px;

}

.work-heading p{

    max-width:760px;

    margin:auto;

    color:#667085;

    font-size:18px;

    line-height:1.9;

}

/*==============================
Cards
==============================*/

.work-card{

    position:relative;

    background:rgba(255,255,255,.82);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.7);

    border-radius:30px;

    padding:45px 35px;

    text-align:center;

    overflow:hidden;

    transition:.45s;

    box-shadow:

    0 15px 45px rgba(0,0,0,.06);

    height:100%;

}

.work-card:hover{

    transform:translateY(-12px);

    box-shadow:

    0 30px 70px rgba(13,110,253,.18);

}

/* Top Border */

.work-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:linear-gradient(90deg,#0057ff,#00b8ff);

}

/* Step Number */

.step-no{

    position:absolute;

    right:25px;

    top:18px;

    font-size:70px;

    font-weight:900;

    color:rgba(13,110,253,.06);

    line-height:1;

}

/*==============================
Icon
==============================*/

.work-icon{

    width:95px;

    height:95px;

    border-radius:24px;

    margin:auto;

    margin-bottom:28px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:36px;

    color:#fff;

    background:linear-gradient(135deg,#0057ff,#00b8ff);

    transition:.45s;

}

.work-card:hover .work-icon{

    transform:rotateY(180deg) scale(1.05);

}

/*==============================
Title
==============================*/

.work-card h4{

    font-size:28px;

    font-weight:700;

    color:#0A2540;

    margin-bottom:15px;

}

/*==============================
Description
==============================*/

.work-card p{

    color:#667085;

    font-size:16px;

    line-height:1.9;

    margin:0;

}

/*==============================
Hover Background
==============================*/

.work-card:hover{

    background:#fff;

}

/*==============================
Responsive
==============================*/

@media(max-width:1199px){

.work-heading h2{

font-size:42px;

}

}

@media(max-width:991px){

.work-section{

padding:90px 0;

}

.work-heading{

margin-bottom:60px;

}

.work-heading h2{

font-size:36px;

}

.work-card{

padding:35px 25px;

}

}

@media(max-width:767px){

.work-heading h2{

font-size:30px;

}

.work-heading p{

font-size:16px;

}

.work-icon{

width:80px;

height:80px;

font-size:30px;

}

.work-card h4{

font-size:22px;

}

.step-no{

font-size:50px;

}

}

@media(max-width:576px){

.work-section{

padding:70px 0;

}

.work-card{

border-radius:22px;

padding:30px 22px;

}

}