.step-0 {
    height: 520px;
    width: 100%;
    background-image: radial-gradient(#86EFAC, #16A34A);
}

.step-0>div,
.step-1>div,
.step-2>div {
    max-width: 1080px;
    margin: 0 auto;
}

.step-0 .title {
    font-size: 28px;
    color: #fff;
    text-align: center;
    margin-top: 80px;
    margin-right: 30px;
}

.step-0 .icon {
    width: 80px;
    height: 80px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-0 .icon img {
    width: 45px;
}

.step-0-list {
    margin-top: 50px;
    display: flex;
    justify-content: space-evenly;
}

.step-0-item {
    display: flex;
    flex-direction: column;
    color: #fff;
    align-items: center;
}

.step-0-item:nth-child(3) img {
    width: 35px;
}

.step-0-item-title {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 18px;
}

.step-1 {
    background-color: #f5f5f5;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.step-1 .title {
    font-size: 28px;
}

.step-1 .desc {
    font-size: 18px;
    color: #838282;
    margin-top: 10px;
}

.step-1 img {
    height: 400px;
    margin-left: 50px;
}

.step-2 {
    background-color: #fff;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.step-2 .title {
    font-size: 28px;
}

.step-2 .desc {
    font-size: 18px;
    color: #838282;
    margin-top: 10px;
}

.step-2 img {
    height: 400px;
    margin-right: 30px;
}

@media screen and (width <=1080px) {

    .step-0>div,
    .step-1>div,
    .step-2>div {
        max-width: 100%;
        margin: 0 auto;
        padding: 0 4rem;
        box-sizing: border-box;
    }
}

@media screen and (width <=768px) {

    .step-0>div,
    .step-1>div,
    .step-2>div {
        max-width: 100%;
        margin: 0 auto;
        padding: 0 1rem;
        flex-direction: column;
        box-sizing: border-box;
    }

    .step-1>div,
    .step-2>div {
        padding: 0 2rem;
    }

    .step-0 .icon {
        width: 40px;
        height: 40px;
    }

    .step-0 .icon img {
        width: 30px;
    }

    .step-0-item:nth-child(3) img {
        width: 23px;
    }

    .step-1 img {
        width: 90%;
        height: auto;
        margin: 2rem auto 0;
    }

    .step-1 .title {
        font-size: 1.7rem;
    }

    .step-2 img {
        width: 90%;
        margin: 0 auto;
        height: auto;
    }

    .step-2 .title {
        margin-top: 2rem;
        font-size: 1.7rem;
    }

    .step-1, .step-2 {
        height: auto;
    }
}