    .section5 {
        display: block;
        padding: 0;
    }

    .Box5 {
        position: relative;
        width: 100%;
        z-index: 2;
        margin-top: 60px;
        display: flex;
        grid-gap: 1px;
    }


    .item5 {
        flex: 1;
        width: 100%;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f4efecf0;
        transition: 0.5s;
    }

    .item5.on {
        flex: 25%;
    }

    .item5 .img6 {
        position: relative;
        z-index: 1;
        width: 100%;
        height: 600px;
        object-fit: cover;
        opacity: 0.1;
    }

    .item5.on .img6 {
        opacity: 1;
    }

    .item5 h1 {
        position: absolute;
        z-index: 2;
        color: #333;
        text-align: center;
        font-family: Arial;
        font-size: 16px;
        font-weight: 700;
        line-height: 1.5;
        padding: 0 45px;
    }

    .item5.on h1 {
        font-size: 28px;
        color: #fff;
    }

    .item5 p {
        position: absolute;
        z-index: 2;
        bottom: 45px;
        display: flex;
        align-items: center;
        grid-gap: 10px;
        color: #797979;
        font-family: Arial;
        font-size: 16px;
        font-weight: 700;
        transition: 0.5s;
    }

    .item5.on p {
        display: flex;
        flex-direction: column-reverse;
        color: #fff;
        bottom: 30%;
    }

    .item5 p img {
        width: 15px;
        filter: grayscale(1);
    }

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


    @media (max-width: 1200px) {
        .item5 p {
            display: flex;
            flex-direction: column-reverse;
        }

        .Box5 {
            margin-top: 30px;
            display: flex;
            flex-wrap: wrap;
            grid-gap: 0;
        }

        .item5 {
            width: 33.333%;
            overflow: hidden;
            flex: none;
        }

        .item5.on {
            flex: none;
        }

        .item5 .img6 {
            height: auto;
        }

        .item5 h1 {
            line-height: 1.25;
        }

        .item5.on h1 {
            font-size: 24px;
        }

        .item5 p,
        .item5.on p {
            bottom: 15px;
        }
    }

    @media (max-width: 720px) {
        .item5 {
            width: 50%;
        }
    }

    @media (max-width: 460px) {
        .Box5 {
            grid-gap: 2px;
        }

        .item5 {
            width: 100%;
        }
    }

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