.process-steps {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0px;
    margin-top: 32px;
    margin-bottom: 48px;
    gap: 48px;
    width: 100%;
    height: 136px;
    background: #FFFFFF;
}
.process-steps__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content:center;
    padding: 0px;
    width: 240px;
    height: 136px;
}
.process-steps__step-img {
    width: 64px;
    height: 64px;
}
.process-steps__step-svg-cnt {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 64px;
    height: 64px;
    background: #F6F7F8;
    border-radius: 20px;
}
.process-steps__step-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align:center;
    margin-top:20px;
    padding: 0px;
    gap: 24px;

    height: 48px;
}
@media only screen and (max-width: 768px) {

    .process-steps {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0px;
        gap: 32px;
        width: 100%;
        height: 616px;
        background: #FFFFFF;
        margin-top: 0px;
    }
    .process-steps__step {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0px;
        gap: 24px;
        width: 100%;
        height: 112px;
    }
    .process-steps__step-img {
        width: 64px;
        height: 64px;
    }
    .process-steps__step-svg-cnt {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 64px;
        height: 64px;
        background: #F6F7F8;
        border-radius: 20px;
    }
    .process-steps__step-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0px;
        margin-top:10px;
        gap: 24px;
        width: 100%;
        height: 24px;
    }
}
