    /* box2 */
    .section2 {
        width: 100%;
        position: relative;
        z-index: 1;
        overflow: hidden;
        padding: 120px 0;
    }

    .Box2 {
        width: 100%;
        height: 100%;
        z-index: 2;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .Box2 .indexTitle {
        color: #1b1b1d;
        font-size: 22px;
        width: 20px;
        display: flex;
        align-items: center;
    }

    .Box2 .item2 {
        width: 30%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .text2 {
        width: 200px;
        height: 50px;
        border-radius: 50px;
        background: var(--color2);
        border: 2px solid var(--color2);
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
        margin-bottom: 30px;
        transition: 0.5s;
    }

    .text2:hover {
        background-color: rgba(79, 182, 0, 0.2);
    }

    .text2 img {
        width: 25px;
        margin-right: 10px;
    }

    .text2 h1 {
        color: #fff;
        font-weight: 700;
        font-size: 16px;
        letter-spacing: 2px;
    }

    .img2 {
        padding: 20px;
        width: 100%;
    }

    .img2 img {
        width: 100%;
    }

    @media (max-width: 1600px) {}

    @media (max-width: 1440px) {}

    @media (max-width: 1200px) {
        .section2 {
            padding: 90px 0;
        }

        .Box2 .indexTitle {
            width: 100%;
            text-align: center;
            justify-content: center;
            margin-bottom: 30px;
            font-size: 24px;
        }

        .Box2 .item2 {
            width: 33.3333%;
        }
    }

    @media (max-width: 720px) {
        .section2 {
            padding: 60px 0;
        }

        .Box2 .indexTitle {
            margin-bottom: 15px;
        }

        .Box2 {
            grid-gap: 30px;
        }

        .Box2 .item2 {
            width: 100%;
        }

        .text2 {
            margin-bottom: 15px;
        }

        .img2 {
            width: 100%;
            max-width: 400px;
        }
    }

    @media (max-width: 460px) {}

    @media (max-width: 380px) {}