    .section2 {
        background: #f5f5f5;
        position: relative;
        overflow: hidden;
    }

    .Box2 {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
    }

    .item2 {
        width: calc((100% - 50px) / 3);
    }

    .text2 {
        position: relative;
        z-index: 2;
        width: calc(100% - 50px);
        margin: 0 auto;
        margin-top: -45px;
        height: 80px;
        background-color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.5s;
    }

    .text2 span {
        width: 52px;
        height: 52px;
        background-color: var(--color);
        border-radius: 50%;
        font-size: 40px;
        line-height: 1;
        color: #ffffff;
        position: absolute;
        top: 0;
        transform: translateX(0%) translateY(-50%);
        transition: all ease .3s;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.5s;
    }

    .text2 h1 {
        font-weight: bold;
        padding-top: 15px;
        font-size: 18px;
        color: #333333;
        transition: 0.5s;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
    }

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

    .item2:hover .text2 span {
        background-color: #fff;
        color: var(--color);
    }

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

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

    @media (max-width: 1200px) {
        .text2 {
            margin-top: -30px;
            height: 60px;
        }

        .text2 span {
            width: 40px;
            height: 40px;
            font-size: 30px;
        }

        .text2 h1 {
            padding: 0 15px;
            padding-top: 10px;
            font-size: 16px;
        }
    }

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

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