#how-it-works-section {
    padding-top: 100px;
    padding-bottom: 80px;
    position: relative;
}

#how-it-works-section .content {
    background: #F3F2FF;
    flex-direction: column;
    align-items: center;
    padding-top: 56px;
    padding-bottom: 56px;
    border-radius: 16px;
    position: relative;
}

#how-it-works-section h2 {
    color: var(--color-black-light);
    font-weight: 600;
}

#how-it-works-section h4 {
    color: var(--color-black-solid);
    font-weight: 500;
}

#how-it-works-section p {
    color: var(--color-gray-dark);
}

#how-it-works-content, #how-it-works-mobile-content {
    display: flex;
    max-width: 780px;
    width: 100%;
    justify-content: space-between;
    margin-top: 22px;
}

#how-it-works-description {
    display: flex;
    flex-direction: column;
    width: 320px;
    gap: 80px;
}

#how-it-works-steps {
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: space-between;
    margin-top: 22px;
    margin-bottom: 150px;
}

#how-it-works-steps #dashed-line {
    position: absolute;
    z-index: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    border-right: 1px dashed var(--color-gray-dark);
}

#how-it-works-steps img {
    z-index: 1;
    background:white;
    border-radius: 50%;
}

#how-it-works-step-imgs {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 75px;
    margin-top: 20px;
    width: 320px;
    align-items:center;
}

#how-it-works-section .elipse-1,
#how-it-works-section .elipse-2,
#how-it-works-section .elipse-3,
#how-it-works-section .elipse-4 {
    position: absolute;
    z-index: 0;
}

#how-it-works-section .elipse-1 {
    top: -200px;
    right:0
}
#how-it-works-section .elipse-2 {
    left: 0;
    top: 0;
}
#how-it-works-section .elipse-3 {
    bottom: -500px;
    left: 0;
}
#how-it-works-section .elipse-4 {
    bottom: -300px;
    right: 0;
}

#how-it-works-mobile-content {
    display: none;
}

@media (max-width: 1024px) {
    #how-it-works-content {
        display: none;
    }
    #how-it-works-mobile-content {
        display: flex;
    }
    #how-it-works-mobile-steps {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    #how-it-works-mobile-steps > div {
        margin-right: 20px;
    }
    .mobile-step-header {
        display: flex;
        justify-content: space-between;
        position: relative;
        align-items: center;
    }
    .mobile-step-header .step-image {
        position: absolute;
        top: 0;
        bottom: 0;
        height: 100%;
        display: flex;
        align-items: center;
        left: -52px;
    }
    .mobile-step-header .step-image img {
        background:white;
        border-radius: 50%;
    }

    .mobile-step-header .step-image img {
        background:white;
        border-radius: 50%;
    }
    /* #how-it-works-mobile-steps > div:first-child .step-image::after {
        background: #F3F2FF;
        display: block;
        left:0;
        right:0;
        height:50%;
        width:100%;
    } */
    #how-it-works-section h4 {
        font-size: 16px;
        line-height: 136%;
    }
    #how-it-works-steps{
        margin-left: 20px;
        margin-right: 20px;
        margin-top: 45px;
        margin-bottom: 140px;
    }
    #how-it-works-steps img {
        visibility: hidden;
    }
}

@media (max-width: 600px) {
    #how-it-works-mobile-steps .step-preview-img {
        width: 137px;
    }
    #how-it-works-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    #how-it-works-section .content {
        padding-top: 16px;
        padding-bottom: 16px;
    }
    #how-it-works-section h2 {
        font-size: 28px;
    }
    #how-it-works-section .elipse-1 {
        top: -400px;
        right:0
    }
    #how-it-works-section .elipse-3 {
        bottom: -300px;
        left: -450px;
    }
    #how-it-works-steps{
        margin-bottom: 165px;
    }
}

@media (max-width: 400px) {
    #how-it-works-steps{
        margin-bottom: 200px;
    }
}

