/* PROCESSUS */
    .steps_wrap {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 0;
        position: relative;
    }
    
    .steps_wrap::before {
        content: '';
        position: absolute;
        top: 36px;
        left: 10%;
        right: 10%;
        height: 1px;
        background: var(--second);
        z-index: 0;
    }
    
    .step {
        text-align: center;
        padding: 0 12px;
        position: relative;
        z-index: 1;
    }
    
    .step_num {
        width: 72px;
        height: 72px;
        border-radius: 50%;
        background: var(--primary);
        border: 2px solid var(--second);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        position: relative;
        z-index: 2;
        box-shadow: 0 0 30px rgba(232, 93, 38, 0.15);
        transition: all 0.3s;
        i{
            font-size: 20px;
        }
    }
    
    .step h3 {
        font-size: 0.88rem;
        font-weight: 700;
        margin-bottom: 8px;
    }
    
    .step p {
        font-size: 0.78rem;
    }
    
    .step_day {
        display: inline-block;
        margin-top: 8px;
        font-size: 0.65rem;
        font-weight: 700;
        color: var(--second);
        letter-spacing: 1px;
        text-transform: uppercase;
    }
/* PROCESSUS */

/* responsive */
    /* PROCESSUS */
        @media screen and (max-width: 1000px){
            .steps_wrap {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
            
            .steps_wrap::before {
                display: none;
            }
        }
        
        @media screen and (max-width: 550px){
            .steps_wrap {
                grid-template-columns: repeat(1, 1fr);
            }
        }
    /* PROCESSUS */
/* responsive */