#section-workflow-step {
    background-color: var(--background-color);
}

#section-workflow-step .section-tag {
    background-image: url('../images/workflow-step/bg-section-tag.png');
    color: var(--primary-color);
}

#section-workflow-step ul.step-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 20px;
    row-gap: 20px;
    list-style: none;

    padding-top: 110px;
}

#section-workflow-step li.step-item {
    padding: 77px 10px 46px 10px;
    /* width: 100%; */
    border-radius: 5px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 6px 16px 0 rgba(0, 0, 0, 0.05);
    background-color: white;

    position: relative;
}

#section-workflow-step .step-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    border: 10px solid white;

    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -95px);
}

#section-workflow-step .step-title {
    font-size: 25px;
    line-height: 33px;
    font-weight: 500;
    color: var(--primary-color);

    position: relative;
    z-index: 1;
    text-align: center;
}

#section-workflow-step .step-name {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin-top: 9px;
}

#section-workflow-step .step-content {
    font-size: 16px;
    line-height: 27px;
    margin-top: 20px;
}

/* Mobile */
@media only screen and (max-width: 991px) {
    #section-workflow-step ul.step-list {
        grid-template-columns: repeat(1, 1fr);
        padding-top: 0;
    }
    
    #section-workflow-step li.step-item {
        padding: 16px 16px 16px 46px;
        margin-left: 55px;
    }
    
    #section-workflow-step .step-image {
        width: 90px;
        height: 90px;
        border: 5px solid white;
    
        position: absolute;
        top: 50%;
        left: 0;
        transform: translate(-55px, -50%);
    }
    
    #section-workflow-step .step-title {
        font-size: 18px;
        line-height: 24px;

        text-align: left;
    }
    
    #section-workflow-step .step-name {
        font-size: 16px;
        text-align: left;
        margin-top: 2px;
    }
    
    #section-workflow-step .step-content {
        font-size: 14px;
        line-height: 20px;
        margin-top: 2px;
    }
}