.how-it-works {
    padding-block: 120px;
}

.how-it-works .row {
    display: flex;
    align-items: center;
}

.how-it-works h2 {
    margin-bottom: 80px;
    text-align: center;
    padding: 0;
}

.how-it-works .col {
    display: flex;
    align-items: flex-start;
    height: 432px;
}

.how-it-works .col .title{
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #0D0D0D;
    position: relative;
}

.how-it-works .col .title:after{
    content: url(../../img/icons/sigsag.svg);
    position: absolute;
    top: 0;
    z-index: 2;
    margin-left: 12px;
}

.how-it-works .circle {
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0px 1px 2px 0px #14141414;
    padding: 40px 80px;
    position: relative;
}

.how-it-works .circle-1 {
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: 432px;
    height: 432px;
}

.how-it-works .circle-2 {
    z-index: 2;
    transform: translateX(-20px);
    display: flex;
    flex-direction: column;
    width: 472px;
    height: 472px;
}

.how-it-works .circle-3 {
    z-index: 3;
    transform: translateX(-40px);
    overflow: hidden;
    background-image: url(../../img/circle-3-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position-y: 100%;
    display: flex;
    flex-direction: column;
    width: 520px;
    height: 520px;
}

.how-it-works .step-num {
    text-align: center;
    font-family: Sora;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 0%;
    text-align: center;
    color: #0D0D0D;
}

.how-it-works h3 {
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 0%;
}

.how-it-works .circle-1 .step-num {
    margin-bottom: 96px;
}

.how-it-works .circle-2 .step-num {
    margin-bottom: 115px;
}

.how-it-works .circle-3 .step-num {
    margin-bottom: 63px;
}

.how-it-works .circle-3 h3+p {
    margin-bottom: 25px;
}

@media (max-width: 767px) {
    .how-it-works .row {
        flex-direction: column;
    }

    .how-it-works .circle-2 {
        transform: translateX(0);
    }

    .how-it-works .circle-3 {
        transform: translateX(0);
    }

    .how-it-works .col {
        height: auto;
    }

    .how-it-works .col .title{
        text-align: left;
        margin-bottom: 13px;
    }
}