

/* =========================================================
   SECTION
========================================================= */

.kd-about-journey-02 {

    width:
        100%;

    max-width:
        100%;

    padding:
        72px 20px
        78px;

    background:
        #F7F8FA;

    color:
        #27323C;

    box-sizing:
        border-box;

    overflow:
        hidden;
}


/* =========================================================
   CONTAINER
   MATCH ABOUT US STANDARD WIDTH
========================================================= */

.kd-about-journey-02-container {

    width:
        100%;

    max-width:
        1320px;

    min-width:
        0;

    margin:
        0 auto;

    box-sizing:
        border-box;
}


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

.kd-about-journey-02-header {

    width:
        100%;

    max-width:
        820px;

    margin:
        0 auto 48px;

    text-align:
        center;

    box-sizing:
        border-box;
}


/* =========================================================
   EYEBROW
========================================================= */

.kd-about-journey-02-eyebrow {

    margin:
        0 0 15px;

    color:
        #159A9C;

    font-family:
        Inter,
        Arial,
        Helvetica,
        sans-serif;

    font-size:
        12px;

    font-weight:
        750;

    line-height:
        1.4;

    letter-spacing:
        1.8px;

    text-transform:
        uppercase;

    overflow-wrap:
        break-word;
}


/* =========================================================
   TITLE
========================================================= */

.kd-about-journey-02-title {

    width:
        100%;

    max-width:
        100%;

    margin:
        0 0 17px;

    color:
        #14213D;

    font-family:
        Manrope,
        Inter,
        Arial,
        Helvetica,
        sans-serif;

    font-size:
        46px;

    font-weight:
        750;

    line-height:
        1.08;

    letter-spacing:
        -1.15px;

    overflow-wrap:
        break-word;

    box-sizing:
        border-box;
}


/* =========================================================
   SUBTITLE
========================================================= */

.kd-about-journey-02-subtitle {

    width:
        100%;

    max-width:
        720px;

    margin:
        0 auto;

    color:
        #69757E;

    font-family:
        Inter,
        Arial,
        Helvetica,
        sans-serif;

    font-size:
        15px;

    font-weight:
        400;

    line-height:
        1.78;

    overflow-wrap:
        break-word;
}


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

.kd-about-journey-02-timeline {

    position:
        relative;

    width:
        100%;

    max-width:
        100%;

    min-width:
        0;

    display:
        grid;

    grid-template-columns:
        repeat(
            4,
            minmax(0,1fr)
        );

    gap:
        20px;

    box-sizing:
        border-box;
}


/* =========================================================
   HORIZONTAL LINE
========================================================= */

.kd-about-journey-02-timeline::before {

    content:
        "";

    position:
        absolute;

    top:
        23px;

    left:
        8%;

    right:
        8%;

    height:
        1px;

    background:
        #D5DDE1;

    z-index:
        0;
}


/* =========================================================
   ITEM
========================================================= */

.kd-about-journey-02-item {

    position:
        relative;

    z-index:
        1;

    width:
        100%;

    max-width:
        100%;

    min-width:
        0;

    text-align:
        center;

    box-sizing:
        border-box;
}


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

.kd-about-journey-02-dot {

    width:
        46px;

    height:
        46px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    margin:
        0 auto 21px;

    background:
        #14213D;

    color:
        #FFFFFF;

    border:
        6px solid #F7F8FA;

    border-radius:
        50%;

    box-shadow:
        0 0 0 1px #159A9C;

    font-family:
        Inter,
        Arial,
        Helvetica,
        sans-serif;

    font-size:
        10px;

    font-weight:
        800;

    line-height:
        1;

    box-sizing:
        border-box;

    transition:
        background-color .2s ease,
        box-shadow .2s ease,
        transform .2s ease;
}


/* =========================================================
   DOT HOVER
========================================================= */

.kd-about-journey-02-item:hover
.kd-about-journey-02-dot {

    background:
        #159A9C;

    box-shadow:
        0 0 0 1px #159A9C,
        0 6px 18px rgba(21,154,156,.14);

    transform:
        translateY(-2px);
}


/* =========================================================
   LABEL / YEAR
========================================================= */

.kd-about-journey-02-label {

    margin:
        0 0 8px;

    color:
        #159A9C;

    font-family:
        Inter,
        Arial,
        Helvetica,
        sans-serif;

    font-size:
        10px;

    font-weight:
        800;

    line-height:
        1.4;

    letter-spacing:
        1.3px;

    text-transform:
        uppercase;

    overflow-wrap:
        break-word;
}


/* =========================================================
   ITEM TITLE
========================================================= */

.kd-about-journey-02-item h3 {

    width:
        100%;

    max-width:
        100%;

    margin:
        0 0 9px;

    color:
        #14213D;

    font-family:
        Manrope,
        Inter,
        Arial,
        Helvetica,
        sans-serif;

    font-size:
        19px;

    font-weight:
        700;

    line-height:
        1.32;

    letter-spacing:
        -.2px;

    overflow-wrap:
        break-word;
}


/* =========================================================
   ITEM DESCRIPTION
========================================================= */

.kd-about-journey-02-item p {

    width:
        100%;

    max-width:
        270px;

    margin:
        0 auto;

    color:
        #69757E;

    font-family:
        Inter,
        Arial,
        Helvetica,
        sans-serif;

    font-size:
        12px;

    font-weight:
        400;

    line-height:
        1.68;

    overflow-wrap:
        break-word;
}


/* =========================================================
   TABLET
   2 × 2
========================================================= */

@media (max-width: 1050px) {

    .kd-about-journey-02 {

        padding:
            66px 20px
            72px;
    }


    .kd-about-journey-02-container {

        width:
            100%;

        max-width:
            900px;
    }


    .kd-about-journey-02-header {

        margin-bottom:
            44px;
    }


    .kd-about-journey-02-title {

        font-size:
            42px;
    }


    .kd-about-journey-02-subtitle {

        max-width:
            680px;

        font-size:
            15px;
    }


    .kd-about-journey-02-timeline {

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

        gap:
            40px 25px;
    }


    .kd-about-journey-02-timeline::before {

        display:
            none;
    }


    .kd-about-journey-02-item p {

        max-width:
            360px;
    }

}


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

@media (max-width: 640px) {

    .kd-about-journey-02 {

        width:
            100%;

        max-width:
            100%;

        padding:
            50px 16px
            55px;
    }


    .kd-about-journey-02-container {

        width:
            100%;

        max-width:
            100%;

        margin:
            0 auto;
    }


    /* Header */

    .kd-about-journey-02-header {

        margin-bottom:
            32px;
    }


    .kd-about-journey-02-eyebrow {

        margin-bottom:
            13px;

        font-size:
            11px;

        letter-spacing:
            1.6px;
    }


    .kd-about-journey-02-title {

        margin-bottom:
            14px;

        font-size:
            32px;

        line-height:
            1.12;

        letter-spacing:
            -.8px;
    }


    .kd-about-journey-02-subtitle {

        font-size:
            14px;

        line-height:
            1.72;
    }


    /* Timeline */

    .kd-about-journey-02-timeline {

        position:
            relative;

        width:
            100%;

        max-width:
            100%;

        min-width:
            0;

        display:
            flex;

        flex-direction:
            column;

        gap:
            28px;

        padding:
            0;

        box-sizing:
            border-box;
    }


    /* Vertical line */

    .kd-about-journey-02-timeline::before {

        display:
            block;

        top:
            0;

        bottom:
            0;

        left:
            20px;

        right:
            auto;

        width:
            1px;

        height:
            auto;

        background:
            #D5DDE1;
    }


    /* Mobile item */

    .kd-about-journey-02-item {

        width:
            100%;

        max-width:
            100%;

        min-width:
            0;

        display:
            grid;

        grid-template-columns:
            42px
            minmax(0,1fr);

        column-gap:
            16px;

        text-align:
            left;

        align-items:
            start;

        box-sizing:
            border-box;
    }


    /* Mobile dot */

    .kd-about-journey-02-dot {

        width:
            42px;

        height:
            42px;

        margin:
            0;

        border:
            5px solid #F7F8FA;

        font-size:
            9px;

        z-index:
            2;
    }


    /* Mobile text */

    .kd-about-journey-02-label {

        margin-bottom:
            7px;

        font-size:
            10px;
    }


    .kd-about-journey-02-item h3 {

        margin-bottom:
            7px;

        font-size:
            18px;

        line-height:
            1.32;
    }


    .kd-about-journey-02-item p {

        max-width:
            100%;

        margin:
            0;

        font-size:
            13px;

        line-height:
            1.68;
    }

}


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

@media (max-width: 380px) {

    .kd-about-journey-02 {

        padding:
            46px 14px
            50px;
    }


    .kd-about-journey-02-title {

        font-size:
            29px;

        line-height:
            1.12;
    }


    .kd-about-journey-02-item {

        grid-template-columns:
            39px
            minmax(0,1fr);

        column-gap:
            14px;
    }


    .kd-about-journey-02-dot {

        width:
            39px;

        height:
            39px;

        border-width:
            4px;
    }


    .kd-about-journey-02-item h3 {

        font-size:
            17px;
    }


    .kd-about-journey-02-item p {

        font-size:
            12.5px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .kd-about-journey-02 *,
    .kd-about-journey-02 *::before,
    .kd-about-journey-02 *::after {

        transition:
            none !important;
    }

}

