/* ==========================================================================
   HOME - ORDER PROCESS
   ========================================================================== */


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




/* ==========================================================================
   HEADING
   ========================================================================== */

.home-order__heading {
    max-width: 680px;

    margin: 0 auto 38px;

    text-align: center;
}











/* ==========================================================================
   STEPS GRID
   ========================================================================== */

.home-order__steps {
    position: relative;

    display: grid;

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

    gap: 20px;
}


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

.home-order-step {
    position: relative;

    min-width: 0;

    padding: 24px;

    background: #FFFFFF;

    border: 1px solid #E7E7E7;
    border-radius: 8px;
}


/* ==========================================================================
   TOP
   ========================================================================== */

.home-order-step__top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 20px;
}


/* ==========================================================================
   NUMBER
   ========================================================================== */

.home-order-step__number {
    color: #B3B3B3;

    font-family: "Raleway", sans-serif;
    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1px;
}


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

.home-order-step__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    background: #002EBE;

    border-radius: 8px;

    color: #FFFFFF;

    font-size: 18px;
}


/* ==========================================================================
   CONTENT
   ========================================================================== */

.home-order-step__content h3 {
    margin: 0 0 9px;

    color: #262626;

    font-family: "Raleway", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;

    text-transform: none;
}





/* ==========================================================================
   TABLET
   ========================================================================== */

@media only screen
and (min-width: 768px)
and (max-width: 991px) {

    .home-order {
        padding: 60px 0;
    }


    .home-order__heading {
        margin-bottom: 32px;
    }


    .home-order__heading h2 {
        font-size: 28px;
    }


    .home-order__steps {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


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

@media screen and (max-width: 767px) {

    .home-order {
        padding: 48px 0;
    }


    .home-order__heading {
        margin-bottom: 27px;

        text-align: left;
    }


    .home-order__eyebrow {
        font-size: 11px;
    }


    .home-order__heading h2 {
        margin-bottom: 11px;

        font-size: 25px;
        line-height: 1.3;
    }


    .home-order__intro {
        font-size: 13px;
        line-height: 1.65;
    }


    .home-order__steps {
        display: block;
    }


    .home-order-step {
        margin-bottom: 16px;

        padding: 20px;
    }


    .home-order-step:last-child {
        margin-bottom: 0;
    }


    .home-order-step__top {
        margin-bottom: 16px;
    }


    .home-order-step__icon {
        width: 42px;
        height: 42px;

        font-size: 17px;
    }


    .home-order-step__content h3 {
        font-size: 15px;
    }


    .home-order-step__content p {
        font-size: 12px;
        line-height: 1.6;
    }

}