/* =========================================================
   PROCESS STEPS
========================================================= */

.process-steps {

    padding: 60px 40px;

    background: var(--color-white);

}

/* =========================================================
   HEADER
========================================================= */

.process-steps__header {

    text-align: center;

    margin-bottom: 35px;

}

/* =========================================================
   TITLE
========================================================= */

.process-steps__title {

    font-size: 30px;

    font-weight: 800;

    line-height: 1.3;

    color: var(--color-primary);

}

.process-steps__title span {

    color: var(--color-secondary);

}

/* =========================================================
   GRID
========================================================= */

.process-steps__grid {

    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 0;

}

/* =========================================================
   ITEM
========================================================= */

.process-steps__item {

    position: relative;

    text-align: center;

    padding: 0 18px;

}

/* =========================================================
   TOP
========================================================= */

.process-steps__top {

    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    margin-bottom: 16px;

}

/* =========================================================
   LINE
========================================================= */

.process-steps__top::after {

    content: "";

    position: absolute;

    top: 50%;
    left: calc(50% + 42px);

    width: calc(100% - 84px);
    height: 1px;

    background: var(--color-border);

    transform: translateY(-50%);

}

.process-steps__item:last-child .process-steps__top::after {

    display: none;

}

/* =========================================================
   ICON
========================================================= */

.process-steps__icon {

    position: relative;

    z-index: 2;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--color-white);

}

.process-steps__icon svg {

    width: 26px;
    height: 26px;

    stroke: var(--color-primary);

    stroke-width: 1.8;

}

/* =========================================================
   NUMBER
========================================================= */

.process-steps__number {

    width: 26px;
    height: 26px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #1d4ed8;

    color: var(--color-white);

    font-size: 12px;

    font-weight: 700;

    position: relative;

    z-index: 2;

}

/* =========================================================
   TITLE
========================================================= */

.process-steps__item h3 {

    font-size: 15px;

    font-weight: 700;

    line-height: 1.4;

    color: var(--color-primary);

    margin-bottom: 10px;

}

/* =========================================================
   TEXT
========================================================= */

.process-steps__item p {

    font-size: 13px;

    line-height: 1.7;

    color: var(--color-text-muted);

}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .process-steps__grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 35px 20px;

    }

    .process-steps__top::after {

        display: none;

    }

}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .process-steps {

        padding: 50px 25px;

    }

    .process-steps__title {

        font-size: 26px;

    }

    .process-steps__grid {

        grid-template-columns: 1fr;

        gap: 28px;

    }

    .process-steps__item {

        text-align: left;

        padding: 0;

    }

    /* =====================================================
       TOP
    ===================================================== */

    .process-steps__top {

        justify-content: flex-start;

        gap: 8px;

        margin-bottom: 10px;

    }

    .process-steps__top::after {

        display: none;

    }

    /* =====================================================
       ICON
    ===================================================== */

    .process-steps__icon {

        width: 36px;
        height: 36px;

    }

    .process-steps__icon svg {

        width: 22px;
        height: 22px;

    }

    /* =====================================================
       NUMBER
    ===================================================== */

    .process-steps__number {

        width: 22px;
        height: 22px;

        font-size: 11px;

    }

    /* =====================================================
       TEXT
    ===================================================== */

    .process-steps__item h3 {

        font-size: 14px;

        margin-bottom: 6px;

    }

    .process-steps__item p {

        font-size: 13px;

        line-height: 1.6;

    }

}