    .section2 {
        position: relative;
        z-index: 1;
        padding-top: 90px;
    }

    .Box2 {
        width: 100%;
        max-width: 1440px;
        margin: 0 auto;
        margin-top: 45px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .Box2 .img2box {
        width: 45%;
    }

    .img2box img {
        width: 100%;
    }

    .Box2 .text2 {
        position: relative;
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        grid-gap: 45px;
    }

    .Box2 .text2::after {
        content: "";
        display: block;
        position: absolute;
        z-index: -1;
        left: 13px;
        width: 2px;
        height: 460px;
        background: rgba(3, 87, 238, 0.1);
    }

    .text2 .item2 {
        display: flex;
        align-items: flex-start;
    }

    .text2 .item2 .aa2 {
        width: 26px;
        height: 26px;
        border-radius: 50px;
        background: #B7B9CC;
        border: 2px solid #B7B9CC;
        transition: 0.5s;
    }

    .text2 .item2:hover .aa2 {
        background: #fff;
        border: 2px solid var(--color1);
    }

    .text2 .item2 .desc {
        width: 320px;
        margin-left: 20px;
        margin-right: 50px;
    }

    .text2 .item2 .desc h1 {
        font-weight: 700;
        font-size: 24px;
        line-height: 1;
        color: rgba(0, 7, 71, 0.3);
        transition: 0.5s;
    }

    .text2 .item2:hover h1 {
        color: var(--color1);
        ;
    }

    .text2 .item2 .desc h2 {
        font-size: 16px;
        line-height: 2;
        color: rgba(0, 7, 71, 0.3);
        transition: 0.5s;
    }

    .text2 .item2:hover h2 {
        color: #000;
    }

    .text2 .item2 span {
        border-radius: 50px;
        font-size: 16px;
        line-height: 1.5;
        color: #FFFFFF;
        background: #B7B9CC;
        padding: 8px 15px;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 0.5s;
    }

    .text2 .item2:hover span {
        background: var(--color5);
    }

    @media (max-width: 1540px) {
        .Box2 {
            max-width: 1100px;
            margin-top: 30px;
        }

        .Box2 .img2box {
            width: 40%;
        }

        .Box2 .text2 {
            width: 55%;
            grid-gap: 45px;
        }

        .text2 .item2 .desc {
            width: 240px;
            margin-left: 15px;
            margin-right: 30px;
        }

        .text2 .item2 .desc h2 {
            margin-top: 10px;
            line-height: 1.5;
        }

        .Box2 .text2::after {
            height: 490px;
        }
    }

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

        .Box2 {
            max-width: 700px;
            margin-top: 30px;
            justify-content: center;
        }

        .Box2 .img2box {
            width: 80%;
        }

        .Box2 .text2 {
            width: 100%;
            grid-gap: 45px;
        }

        .text2 .item2 .desc {
            width: calc(100% - 330px);
            margin: 0;
            padding-left: 15px;
            padding-right: 30px;
        }

        .text2 .item2 span {
            width: 300px;
        }
    }

    @media (max-width: 720px) {
        .text2 .item2 span {
            width: 240px;
            font-size: 14px;
        }

        .text2 .item2 .desc {
            width: calc(100% - 270px);
        }
    }

    @media (max-width:560px) {
        .text2 .item2 {
            position: relative;
            padding-bottom: 45px;
        }

        .text2 .item2 span {
            position: absolute;
            left: 40px;
            bottom: 0;
        }

        .text2 .item2 .desc {
            width: calc(100% - 30px);
        }

        .Box2 .text2::after {
            height: 690px;
        }
    }

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