    .section6 {
        display: block;
    }

    .Box6 {
        width: 100%;
        margin-bottom: 60px;
    }


    .item6Box {
        margin-top: 60px;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 30px;
    }

    .item6 {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .img6 {
        width: 45%;
        border: 1px solid #333;
        position: relative;
    }

    .time6 {
        position: absolute;
        z-index: 2;
        left: 0;
        top: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 5px 10px;
        font-size: 16px;
        line-height: 1.5;
        color: #fff;
        background: var(--color);
        text-align: center;
    }

    .time6 p {
        width: 50%;
        text-align: center;
        font-size: 16px;
        line-height: 1.5;
        color: #fff;
        border-bottom: 1px solid #fff;
    }

    .text6 {
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        grid-gap: 30px;
    }

    .text6 h1 {
        font-size: 16px;
        color: #333;
        line-height: 2;
        text-align: left;
    }

    .text6 h2 {
        padding: 5px 10px;
        border: 1px solid var(--color);
        font-size: 16px;
    }

    .item6:hover .text6 h2 {
        color: #fff;
        background: var(--color);
    }

    @media (max-width: 1200px) {
        .text6 {
            grid-gap: 10px;
        }

        .text6 h1 {
            font-size: 14px;
            line-height: 1.5;
        }

        .time6 {
            padding: 5px;
            font-size: 14px;
        }

        .time6 p {
            font-size: 14px;
        }
    }

    @media (max-width: 900px) {
        .item6 {
            flex-wrap: wrap;
        }

        .img6 {
            width: 100%;
            margin-bottom: 15px;
        }

        .text6 {
            width: 100%;
            padding: 0;
        }
    }

    @media (max-width: 500px) {
        .item6Box {
            margin-top: 30px;
            grid-template-columns: repeat(1, 1fr);
            grid-gap: 20px;
        }
    }

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