/* CSS for Why Us flexible section */ 
/* Import main style */

.why-us__process {
    margin-bottom: 30px;
}

.process-line {
    width: 100%;
    border-bottom: 1px solid var(--color-muted);
}

.process-step {
    border: 1px solid var(--color-muted);
    border-radius: var(--border-radius-xl);
    padding: 20px;
    max-height: 100%;
    transition: all 0.3s ease;
}
    .process-step:hover {
        background-color: var(--color-secondary-soft);
    }


.process-step__number {
    right: 20px;
    top: 10px;
    text-align: center;
    /*
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--color-muted);
    */
    color: var(--color-secondary);
}

.process-step__title {
    margin-right: 40px;
    font-size: 1.2rem;
}

.process-step__line {
    width: 1px;
    background-color: var(--color-muted);
    position: absolute;
    top: 0;
    left: 50%;
    height: 25px;
}

@media (max-width: 768px) {
    .process-step {
        height: auto;
        margin-bottom: 0;
    }

    .why-us {
        margin-bottom: 50px;
    }
}