.sequential_step_by_step_process_section{
    counter-reset: alpha-counter;
}
.sequential_step_by_step_process_section .section_title:not(:last-child){
    margin-bottom: 50px;
}
.sequential_step_by_step_process_section .section_title{
    text-align: center;
    max-width: 930px;
    margin-left: auto;
    margin-right: auto;
}
.sequential_step_by_step_process_section .sequential_step_wrap{
    max-width: 1050px;
    margin-right: auto;
    border-radius: 20px;
    background: #F3F3F3;
    display: flex;
    padding: 30px;
    align-items: center;
    counter-increment: alpha-counter;
}

.sequential_step_by_step_process_section .sequential_step_wrap:not(:last-child){
    margin-bottom: 40px;
}
.sequential_step_by_step_process_section .sequential_step_wrap .img_wrap{
    width: 340px;
    height: 260px;
    aspect-ratio: 17/13;
    margin-right: 60px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
    background-color: #3A414B;
}
.sequential_step_by_step_process_section .sequential_step_wrap .img_wrap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sequential_step_by_step_process_section .sequential_step_wrap .content_wrap{
    flex-grow: 1;
}
.sequential_step_by_step_process_section .sequential_step_wrap .content_wrap .numbers_icon{
    position: relative;
    display: flex;
    width: 85px;
    height: 85px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #FDAA2E;
}

.sequential_step_by_step_process_section.buyers_section .sequential_step_wrap .content_wrap .numbers_icon{
    background-color: #FFF;
    color: #FDAA2E;
}
.sequential_step_by_step_process_section .sequential_step_wrap .content_wrap .numbers_icon:not(:last-child){
    margin-bottom: 24px;
}
.sequential_step_by_step_process_section .sequential_step_wrap .content_wrap h3:not(:last-child){
    margin-bottom: 20px;
}
.sequential_step_by_step_process_section .sequential_step_wrap .content_wrap .numbers_icon::before{
    /* content: counter(alpha-counter); */
    content: counter(alpha-counter, decimal-leading-zero);
    text-align: center;    
    font-family: "Playfair Display";
    font-size: 45px;
    color: #FFF;
    font-style: normal;
    font-weight: 700;
    display: inline-block;
    vertical-align: top;
    position: absolute;
    left: 50%;
    top: calc(50% - 8px);
    line-height: 1;
    transform: translate(-50%, -50%);
    line-height: 32px;
}
.sequential_step_by_step_process_section.buyers_section .sequential_step_wrap .content_wrap .numbers_icon::before{
    color: #FDAA2E;
}
.sequential_step_by_step_process_section .sequential_step_wrap.switch-column{
    margin-right: unset;
    margin-left: auto;
    flex-direction: row-reverse;
}

@media only screen and (min-width: 993px) {
    .sequential_step_by_step_process_section .sequential_step_wrap.switch-column .content_wrap{
        text-align: right;
    }
    .sequential_step_by_step_process_section .sequential_step_wrap.switch-column .content_wrap .numbers_icon {
        margin-left: auto;
    }
    .sequential_step_by_step_process_section .sequential_step_wrap.switch-column .img_wrap{
        margin-left: 60px;
        margin-right: unset;
    }
}

@media only screen and (max-width: 991px) {
    .sequential_step_by_step_process_section .sequential_step_wrap.switch-column,
    .sequential_step_by_step_process_section .sequential_step_wrap{
        flex-direction: column;
        align-items: flex-start;
    }

    .sequential_step_by_step_process_section .sequential_step_wrap .img_wrap{
        margin-right: 0;
        width: unset;
        height: unset;
        aspect-ratio: 16 / 9;
    }
    .sequential_step_by_step_process_section .sequential_step_wrap .content_wrap{
        margin-top: 30px;
    }
}
@media only screen and (max-width: 767px) {
    .sequential_step_by_step_process_section .sequential_step_wrap {
        padding: 20px;
        border-radius: 12px;
    }
    .sequential_step_by_step_process_section .sequential_step_wrap .img_wrap {
        border-radius: 12px;
    }
    .sequential_step_by_step_process_section .sequential_step_wrap .content_wrap .numbers_icon {
        width: 60px;
        height: 60px;
    }
    .sequential_step_by_step_process_section .sequential_step_wrap .content_wrap .numbers_icon::before {
        font-size: 30px;
        top: calc(50% - 5px);
    }
    .sequential_step_by_step_process_section .sequential_step_wrap:not(:last-child) {
        margin-bottom: 30px;
    }
}