    /* box2 */
    .section2 {
        display: block;
    }

    .Box2 {
        margin-top: 60px;
        width: 100%;
        z-index: 2;
        position: relative;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 20px 30px;
    }


    .item2 {
        width: 100%;
        position: relative;
    }

    .item2:nth-child(1) {
        grid-row: 1/3;
    }

    .img2 {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: relative;
        z-index: 2;
    }

    .text2 {
        position: absolute;
        z-index: 3;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 60px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 30px;
    }

    .text2::after {
        content: "";
        display: block;
        width: calc(100% - 60px);
        height: 1px;
        background: #D9D9D9;
        position: absolute;
        bottom: 60px;
    }

    .text2 h1 {
        color: #FFF;
        font-family: Arial;
        font-size: 20px;
        font-weight: 400;
        width: calc(100% - 140px);
    }

    .item2:nth-child(1) .text2 {
        justify-content: flex-end;
    }

    .item2:nth-child(1) .text2 h1 {
        position: absolute;
        left: 30px;
        bottom: 80px;
        font-size: 32px;
    }

    .text2 p {
        width: 140px;
        color: #FFF;
        font-family: Arial;
        font-size: 16px;
        font-weight: 700;
    }

    .text2 p img {
        filter: brightness(0) invert(1);
    }


    @media (max-width: 1200px) {
        .Box2 {
            grid-template-columns: repeat(2, 1fr);
        }

        .text2 h1 {
            font-size: 16px;
            width: calc(100% - 110px);
        }

        .text2 p {
            width: 100px;
            font-size: 12px;
        }

        .text2 p img {
            width: 15px;
        }

        .item2:nth-child(1) .text2 h1 {
            font-size: 24px;
        }
    }

    @media (max-width: 720px) {
        .Box2 {
            margin-top: 30px;
            grid-gap: 20px 15px;
        }

        .item2:nth-child(1) .text2 h1 {
            font-size: 18px;
        }

        .text2 {
            flex-wrap: wrap;
            padding: 0 15px;
        }

        .text2 h1 {
            width: 100%;
        }

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

    @media (max-width: 460px) {
        .Box2 {
            grid-template-columns: repeat(1, 1fr);
        }
    }

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