    .section5 {
        padding: 0;
    }

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

    .item5 {
        width: 50%;
        overflow: hidden;
        position: relative;
        z-index: 1;
        background: #000;
    }

    .item5 .text5 {
        position: absolute;
        padding: 0 15px;
        z-index: 2;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        grid-gap: 20px;
    }

    .item5 .text5 img {
        width: 50px;
    }

    .item5 .text5 h1 {
        font-weight: 700;
        font-size: 20px;
        color: #FFFFFF;
        text-align: center;
    }

    .item5 .text5 h2 {
        font-size: 16px;
        color: #FFFFFF;
        text-align: center;
    }

    .item5 .img5 {
        position: relative;
        z-index: 1;
        width: 100%;
        transition: 0.5s;
        opacity: 0.8;
    }

    .item5:hover .img5 {
        transform: scale(1.08);
    }


    @media (max-width: 1200px) {
        .item5 {
            width: 100%;
        }
    }

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

    @media (max-width: 460px) {
        .item5 .img5 {
            min-height: 70vw;
            object-fit: cover;
        }
    }

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