/* =========================================
   PROCESS
========================================= */

.fc-process{

    background:#EDF7E8;

    border-radius:35px;

    padding:80px 50px;

    overflow:hidden;

}


/* =========================================
   CONTAINER
========================================= */

.fc-process .fc-container{

    max-width:1320px;

    margin:0 auto;

    padding:0 20px;

}


/* =========================================
   HEADER
========================================= */

.fc-head{

    text-align:center;

    max-width:700px;

    margin:0 auto 60px;

}

.fc-label{

    color:#3F8C32;

    font-size:14px;

    font-weight:700;

    letter-spacing:3px;

    margin-bottom:15px;

    text-transform:uppercase;

}

.fc-head h2{

    color:#14387B;

    font-size:48px;

    line-height:1.2;

    margin:0 0 20px;

}

.fc-head p{

    color:#666;

    font-size:20px;

    line-height:1.7;

    margin:0;

}


/* =========================================
   TIMELINE
========================================= */

.fc-timeline{

    position:relative;

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    padding-top:30px;

}


/* =========================================
   WAVE
========================================= */

.fc-wave{

    position:absolute;

    left:0;

    top:-10px;

    width:100%;

    height:160px;

    z-index:0;

    pointer-events:none;

}

.fc-wave path{

    fill:none;

    stroke:#5E9F48;

    stroke-width:2;

    opacity:.25;

    stroke-linecap:round;

    stroke-linejoin:round;

}

/* =========================================
   STEP
========================================= */

.fc-item{

    position:relative;

    width:22%;

    text-align:center;

    z-index:2;

    margin-top:65px;

}

.fc-item.up{

    margin-top:-8px;

}


/* =========================================
   ICON
========================================= */

.fc-icon{

    width:118px;

    height:118px;

    background:#fff;

    border-radius:50%;

    margin:0 auto 18px;

    display:flex;

    justify-content:center;

    align-items:center;

    box-shadow:
        0 12px 28px rgba(0,0,0,.06);

}

.fc-icon img{

    width:74px;

    height:74px;

    object-fit:contain;

}


/* =========================================
   TEXT
========================================= */

.fc-item h3{

    margin:0 0 10px;

    color:#14387B;

    font-size:22px;

    font-weight:700;

    position:relative;

    z-index:2;

}

.fc-item p{

    margin:0 auto;

    max-width:220px;

    color:#666;

    font-size:16px;

    line-height:1.6;

    position:relative;

    z-index:2;

}

/* ===========================
   MOBILE
=========================== */

@media (max-width:991px){

    .fc-process{

        padding:60px 25px;

        border-radius:24px;

    }

    /* ---------- HEADER ---------- */

    .fc-head{

        margin:0 auto 50px;

    }

    .fc-label{

        font-size:11px;

        letter-spacing:2px;

    }

    .fc-head h2{

        font-size:28px;

        line-height:1.2;

        margin-bottom:20px;

    }

    .fc-head p{

        font-size:16px;

        line-height:1.6;

    }

    /* ---------- Скрываем волну ---------- */

    .fc-wave{

        display:none !important;

    }

    /* ---------- Таймлайн ---------- */

    .fc-timeline{

        display:flex;

        flex-direction:column;

        gap:42px;

        position:relative;

        padding:0;

    }

    /* ---------- Этап ---------- */

    .fc-item,
    .fc-item.up{

        width:100%;

        margin:0;

        display:block;

        text-align:center;

        position:relative;

        z-index:2;

    }

    /* ---------- Иконка ---------- */

    .fc-icon{

        width:82px;

        height:82px;

        margin:0 auto 16px;

        display:flex;

        justify-content:center;

        align-items:center;

    }

    .fc-icon img{

        width:54px;

        height:54px;

    }

    /* ---------- Заголовок ---------- */

    .fc-item h3{

        margin:0 0 8px;

        font-size:20px;

        line-height:1.3;

    }

    /* ---------- Описание ---------- */

    .fc-item p{

        margin:0 auto;

        max-width:240px;

        font-size:14px;

        line-height:1.5;

        color:#666;

    }

}