    .section4 {
        display: block;
        position: relative;
        width: 100%;
        padding: 75px;
        background: #EAEAEA;
    }

    .Box4 {
        position: relative;
        width: 100%;
        z-index: 2;
        display: flex;
        flex-wrap: wrap;
    }

    .text4 {
        background: #fff;
        width: 50%;
        padding: 90px;
        display: flex;
        flex-direction: column;
        grid-gap: 10px;
    }

    .text4 h1 {
        color: #000;
        font-size: 32px;
        font-weight: 700;
        line-height: 1.5;
    }

    .text4 span {
        display: block;
        background: #898989;
        width: 18px;
        height: 2px;
    }

    .text4 h2 {
        color: #000;
        font-size: 18px;
        font-weight: bold;
        line-height: 1.5;
    }

    .text4 h3 {
        color: #888;
        font-size: 16px;
        line-height: 1.5;
        max-width: 550px;
    }


    .item4 {
        width: 25%;
        position: relative;
        z-index: 2;
    }

    .item4 .img4 {
        position: relative;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

    .item4 .desc4 {
        position: absolute;
        width: 100%;
        height: 100%;
        background: #00000099;
        z-index: 2;
        transition: 0.5s;
        opacity: 0;
        padding: 30px 45px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        grid-gap: 10px;
    }

    .item4:hover .desc4 {
        opacity: 1;
    }

    .item4 .desc4 h1 {
        color: #FFF;
        font-size: 22px;
        font-weight: 700;
    }

    .item4 .desc4 span {
        display: block;
        background: #898989;
        width: 28px;
        height: 3px;
    }

    .item4 .desc4 h2 {
        color: #FFF;
        font-size: 16px;
        line-height: 1.5;
    }

    .Number4 {
        width: 25%;
        height: auto;
        background: var(--color);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-evenly;
    }

    .Number4 span {
        width: 20px;
        height: 2px;
        background: #D9D9D9;
    }

    .Number4 span:last-child {
        display: none;
    }

    .Number4 h1 {
        display: flex;
        align-items: baseline;
        grid-gap: 5px;
        text-align: center;
    }

    .Number4 h1 p {
        color: #FFF;
        text-align: center;
        font-size: 58px;
        font-weight: 700;
    }

    .Number4 h1 b {
        color: #FFF;
        text-align: center;
        font-size: 28px;
        font-weight: 700;
    }

    .Number4 p {
        text-align: center;
        color: #FFF;
        font-size: 16px;
        font-weight: 700;
        opacity: 0.8;
    }


    @media (max-width: 1440px) {
        .text4 {
            padding: 0 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .Number4 h1 p {
            font-size: 48px;
        }

        .item4 .desc4 {
            padding: 20px;
        }

        .item4 .desc4 h2 {
            font-size: 14px;
        }
    }

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

        .item4 .desc4 h2 {
            line-height: 1.25;
        }

    }

    @media (max-width: 1000px) {
        .section4 {
            padding: 60px 3vw;
        }

        .text4 {
            width: 100%;
            padding: 30px 60px;
        }

        .Number4,
        .item4 {
            width: 50%;
        }

        .Number4 h1 p {
            font-size: 38px;
        }

        .Number4 h1 b {
            font-size: 18px;
        }
    }

    @media (max-width: 500px) {
        .Box4 {
            grid-gap: 15px;
        }

        .Number4,
        .item4 {
            width: 100%;
        }

        .Number4 {
            padding: 30px;
            grid-gap: 15px;
        }
    }

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

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