.step_section_mb {
    display: none;
}
.step_text_1 {
    font-size: 6.25rem;
    margin-top: 80px;
}

.step_text_2 {
    font-size: 3.75rem;
    margin-top: -3.5rem;
    color: #252b62;
}

.step_img {
    display: flex;
    align-items: center;
    margin-top: 6rem;
}

.icon_number {
    position: absolute;
    height: 5.625rem;
    width: auto;
}

.step_title_1,
.step_title_2,
.step_title_3,
.step_title_4 {
    font-size: 1.875rem;
    line-height: 2rem;
    color: #252b62;
}

.step_desc_1,
.step_desc_2,
.step_desc_3,
.step_desc_4 {
    font-size: 24px;
    line-height: 30px;
    color: hsl(234, 45%, 26%);
}

.step_1 {
    width: 440px;
    transform: translateY(-210px);

    .icon_step_1 {
        width: 110px;
        height: auto;
        position: absolute;
        translate: 50px 150px;
        scale: 1;
        transition: scale 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        cursor: pointer;
        z-index: 10;
    }

    .step_shadow_1 {
        position: absolute;
        transform: translate(-40px, 85px);
        transition: transform 0.7s ease, opacity 0.3s ease, filter 0.3s ease;
        pointer-events: none;
    }


    .icon_wrap_1 {
        position: absolute;
        width: 250px;
        height: 250px;
        translate: 0px 0px;
        z-index: 10;

        &:hover {
            .icon_step_1 {
                width: 125px;
                translate: 40px 140px;
                rotate: -5deg;
                scale: 1.1;
            }
            .step_shadow_1 {
                transform: translate(-40px, 85px) scale(1.2);
                filter: brightness(1.1);
            }
        }
    }
}

.step_2 {
    width: 440px;
    transform: translateX(370px);

    .icon_step_2 {
        width: 110px;
        height: auto;
        position: absolute;
        translate: -30px -150px;
        scale: 1;
        transition: scale 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        cursor: pointer;
        z-index: 10;
    }

    .step_shadow_2 {
        position: absolute;
        transform: translate(-125px, -225px);
        transition: transform 0.5s ease, opacity 0.3s ease, filter 0.3s ease;
        pointer-events: none;
    }

    .step_content_2 {
        margin-left: 90px;
    }

    .icon_wrap_2 {
        position: absolute;
        width: 250px;
        height: 250px;
        translate: 0px 0px;
        z-index: 10;

        &:hover {
            .icon_step_2 {
                width: 128px;
                scale: 1.1;
            }
            .step_shadow_2 {
                transform: translate(-125px, -225px) scale(1.2);
                filter: brightness(1.1);
            }
        }
    }
}

.step_3 {
    transform: translate(500px, -420px);
    width: 450px;

    .icon_step_3 {
        width: 130px;
        height: auto;
        position: absolute;
        translate: 90px 140px;
        scale: 1;
        transition: scale 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        cursor: pointer;
        z-index: 10;
    }

    .step_shadow_3 {
        position: absolute;
        transform: translate(-10px, 70px);
        transition: transform 0.5s ease, opacity 0.3s ease, filter 0.3s ease;
        pointer-events: none;
    }

    .step_content_3 {
        margin-left: 90px;
    }

    .icon_wrap_3 {
        position: absolute;
        width: 250px;
        height: 250px;
        translate: 0px 0px;
        z-index: 10;

        &:hover {
            .icon_step_3 {
                width: 155px;
                scale: 1.1;
            }
            .step_shadow_3 {
                transform: translate(-10px, 70px) scale(1.2);
                filter: brightness(1.1);
            }
        }
    }
}

.step_4 {
    transform: translate(830px, -35px);
    width: 440px;

    .icon_step_4 {
        width: 130px;
        height: auto;
        position: absolute;
        translate: 65px -175px;
        scale: 1;
        transition: scale 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        cursor: pointer;    
        z-index: 10;
    }

    .step_shadow_4 {
        position: absolute;
        transform: translate(-30px, -250px);
        transition: transform 0.5s ease, opacity 0.3s ease, filter 0.3s ease;
        pointer-events: none;
    }

    .step_content_4 {
        margin-left: 90px;
    }

    .icon_wrap_4 {
        position: absolute;
        width: 250px;
        height: 250px;
        translate: 0px 0px;
        z-index: 10;

        &:hover {
            .icon_step_4 {
                width: 135px;
                rotate: -5deg;
                translate: 65px -160px;
                scale: 1.1;
            }
        }
    }
}

/* @media (max-width: 1200px) {
    .step_img {
        display: none;
    }

    .step_text_1 {
        font-size: 6.25rem;
    }

    .step_text_2 {
        font-size: 3.75rem;
        margin-top: -3.5rem;
        color: #252b62;
    }

    .icon_number {
        height: 70px;
        width: auto;
    }

    .step_title_1,
    .step_title_2,
    .step_title_3,
    .step_title_4 {
        font-size: 24px;
        line-height: 28px;
    }

    .step_desc_1,
    .step_desc_2,
    .step_desc_3,
    .step_desc_4 {
        font-size: 18px;
        line-height: 24px;
    }

    .step_1 {
        width: 420px;
        height: 170px;
        padding: 30px;
        transform: translateY(30px);
        border: 2px solid #252b62;
        border-radius: 10px;
        transition: transform 0.3s ease, background-color 0.3s ease;

        .icon_step_1 {
            width: 90px;
            transform: translate(330px, 95px);
        }
        .step_content_1_en{
            margin-top: -15px !important;
        }

        .step_shadow_1 {
            width: 250px;
            height: 250px;
            transform: translate(250px, 20px);
        }

        &:hover {
            background-color: rgba(37, 43, 98, 0.05);
            .icon_step_1 {
                transform: translate(330px, 95px) scale(1.15);
            }
            .step_shadow_1 {
                transform: translate(250px, 20px) scale(1.15);
            }
        }
    }

    .step_2 {
        width: 400px;
        height: 150px;
        padding: 30px;
        transform: translateY(100px);
        border: 2px solid #252b62;
        border-radius: 10px;
        transition: transform 0.3s ease, background-color 0.3s ease;

        .step_content_2 {
            margin-left: 80px;
        }

        .icon_step_2 {
            width: 90px;
            transform: translate(320px, 70px);
        }

        .step_shadow_2 {
            width: 250px;
            height: 250px;
            transform: translate(230px, -10px);
        }

        &:hover {
            background-color: rgba(37, 43, 98, 0.05);
            .icon_step_2 {
                transform: translate(320px, 70px) scale(1.15);
            }
            .step_shadow_2 {
                transform: translate(230px, -10px) scale(1.15);
            }
        }
    }

    .step_3 {
        width: 420px;
        height: 165px;
        padding: 30px;
        transform: translate(480px, -350px);
        border: 2px solid #252b62;
        border-radius: 10px;
        transition: transform 0.3s ease, background-color 0.3s ease;

        .icon_step_3 {
            width: 90px;
            transform: translate(350px, -70px);
        }

        .step_shadow_3 {
            width: 250px;
            height: 250px;
            transform: translate(270px, -140px);
        }
        .step_content_3_en{
            margin-top: -15px !important;
        }

        .step_content_3 {
            margin-left: 80px;
        }

        &:hover {
            background-color: rgba(37, 43, 98, 0.05);
            .icon_step_3 {
                transform: translate(350px, -70px) scale(1.15);
            }
            .step_shadow_3 {
                transform: translate(270px, -140px) scale(1.15);
            }
        }
    }

    .step_4 {
        width: 350px;
        height: 180px;
        padding: 30px;
        transform: translate(480px, -275px);
        border: 2px solid #252b62;
        border-radius: 10px;
        transition: transform 0.3s ease, background-color 0.3s ease;

        .icon_step_4 {
            width: 90px;
            transform: translate(275px, -40px);
        }

        .step_shadow_4 {
            width: 250px;
            height: 250px;
            transform: translate(190px, -120px);
        }

        .step_content_4 {
            margin-left: 80px;
        }

        &:hover {
            background-color: rgba(37, 43, 98, 0.05);
            .icon_step_4 {
                transform: translate(275px, -40px) scale(1.15);
            }
            .step_shadow_4 {
                transform: translate(190px, -120px) scale(1.15);
            }
        }
    }
} */

@media (max-width: 1200px) {
    .step_section {
        display: none;
    }

    .step_section_mb {
        display: flex;
        flex-direction: column;
        margin-top: 40px;
    }

    .body_content_mb {
        display: flex;
        flex-direction: column;
        margin-top: 5%;
    }

    .step_content_mb_1,
    .step_content_mb_2,
    .step_content_mb_3,
    .step_content_mb_4 {
        display: flex;
        align-items: center;
        border: 2px solid #252b62;
        border-radius: 1rem;
        margin-bottom: 1rem;
        transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;

        &:hover {
            transform: scale(1.02);
            background-color: rgba(37, 43, 98, 0.05);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        img {
            height: 4.5rem;
            margin-right: 4%;
            transition: transform 0.3s ease;
        }

        &:hover img {
            transform: scale(1.1);
        }
    }

    .step_title_mb_1,
    .step_title_mb_2,
    .step_title_mb_3,
    .step_title_mb_4 {
        font-size: 1.5rem;
        color: #252b62;
    }

    .step_desc_mb_1,
    .step_desc_mb_2,
    .step_desc_mb_3,
    .step_desc_mb_4 {
        color: hsl(234, 45%, 26%);
    }
}

@media (max-width: 768px) {
    .step_text_mb_1 {
        font-size: 42px !important;
    }

    .step_text_mb_2 {
        font-size: 34px !important;
    }

    .step_content_mb_1,
    .step_content_mb_2,
    .step_content_mb_3,
    .step_content_mb_4 {
        padding: 15px !important;

        img {
            height: 3rem;
            margin-right: 4%;
        }
    }

    .step_title_mb_1,
    .step_title_mb_2,
    .step_title_mb_3,
    .step_title_mb_4 {
        font-size: 1.25rem !important;
    }
}

@media (max-width: 431px) {
    .step_section_mb {
        display: flex;
        flex-direction: column;
    }
}