/* PC */
.step-section {
    background-color: var(--background-color);
    padding-top: 47px;
    padding-bottom: 62px;
}

.step-section ol.step-list {
    margin-top: 25px;
    background: linear-gradient(var(--primary-color) 0 0) no-repeat calc((80px - 3px)/2) calc(80px/2) / 3px calc(167px * 3);
}

.step-section li.step-item {
    display: flex;
    gap: 20px;
    height: 167px;
}

.step-section .step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(to bottom, #ABCB6C, #77B400);
    flex-shrink: 0;
    border-radius: 50%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-weight: bold;
}

.step-section .step-content {
    margin-top: 3px;
}

.step-section .step-icon-text {
    font-size: 16px;
    line-height: 16px;
}

.step-section .step-icon-counter {
    font-size: 29px;
    line-height: 29px;
}

.step-section .step-content-title {
    font-size: 24px;
    line-height: 32px;
    font-weight: bold;
    margin-bottom: 9px;
    color: var(--primary-color);
}

.step-section .step-content-content {
    text-align: justify;
    font-size: 16px;
    line-height: 21px;
}

/* Mobile */
@media only screen and (max-width: 991px) {
    .step-section {
        padding-top: 38px;
        padding-bottom: 82px;
    }
    
    .step-section ol.step-list {
        margin-top: 28px;
        background: linear-gradient(var(--primary-color) 0 0) no-repeat calc((60px - 3px)/2) calc(60px/2) / 3px calc(234px * 3);
    }
    
    .step-section li.step-item {
        display: flex;
        gap: 10px;
        height: 234px;
    }
    
    .step-section .step-icon {
        width: 60px;
        height: 60px;
    }

    .step-section .step-content {
        margin-top: 6px;
    }
    
    .step-section .step-icon-text {
        font-size: 14px;
        line-height: 14px;
    }
    
    .step-section .step-icon-counter {
        font-size: 22px;
        line-height: 22px;
    }
    
    .step-section .step-content-title {
        font-size: 20px;
        line-height: 27px;
    }
}