    /* Section2 */
    .section2 {
        display: block;
        position: relative;
    }

    .section2::after {
        content: "";
        position: absolute;
        z-index: 2;
        top: 0;
        left: 0;
        width: 100%;
        height: 10px;
        background: linear-gradient(90deg, var(--color) 0%, var(--color2) 100%);
    }

    .Box2 {
        margin-top: 30px;
        position: relative;
        width: 100%;
        z-index: 2;
    }

    .Swiper2 {
        width: 100%;
    }

    .Swiper2 .swiper-wrapper {
        transition-timing-function: linear;
    }



    .Slide2 {
        border-radius: 8px;
        overflow: hidden;
        height: auto;
    }

    .Slide2 img {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .Slide2 h1 {
        position: absolute;
        z-index: 2;
        padding: 30px;
        left: 0;
        bottom: 0;
        color: #FFF;
        font-family: MiSans2;
        font-size: 20px;
    }


    @media (max-width: 1440px) {
        .Slide2 h1 {
            padding: 20px;
            font-size: 18px;
        }
    }

    @media (max-width: 900px) {
        .Slide2 h1 {
            padding: 15px;
            font-size: 16px;
        }
    }