    /* Section4 */
    .section4 {
        background: #F6F6F6;
        display: block;
    }

    .Box4 {
        position: relative;
        width: 100%;
        z-index: 2;
        margin-top: 45px;
        display: flex;
        flex-wrap: wrap;
        grid-gap: 10px;
    }

    .item4 {
        width: calc((100% - 20px) / 3);
        position: relative;
    }

    .item4:nth-child(1),
    .item4:nth-child(2) {
        width: calc(50% - 5px);
    }

    .item4 h1 {
        position: absolute;
        z-index: 3;
        left: 0;
        bottom: 0;
        width: 100%;
        background: linear-gradient(90deg, var(--color) 0%, rgba(255, 255, 255, 0.00) 100%);
        padding: 30px 45px;
        color: #FFF;
        font-size: 16px;
    }


    @media (max-width: 1200px) {
        .item4 h1 {
            padding: 15px 30px;
        }
    }

    @media (max-width: 900px) {
        .Box4 {
            margin-top: 30px;
        }

        .item4 h1 {
            padding: 10px 20px;
            font-size: 14px;
        }
    }

    @media (max-width: 600px) {
        .item4 {
            width: calc(50% - 5px);
            position: relative;
        }

        .item4:nth-child(1) {
            width: 100%;
        }

        .item4 h1 {
            position: relative;
            padding: 15px 10px;
            background: linear-gradient(90deg, #004d9d 0%, rgb(0 77 157 / 20%) 100%);
        }
    }

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