    /* Section4 */
    .section4 {
        padding-bottom: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .section4 .BaseTitle {
        padding-left: var(--container);
        padding-right: var(--container);
    }

    .section4 .BaseTitle * {
        text-align: center;
    }

    .Box4 {
        margin-top: 75px;
        position: relative;
        width: 100%;
        height: 40vw;
        z-index: 2;
        display: flex;
    }

    .item4 {
        width: 100%;
        height: 100%;
        position: relative;
        overflow: hidden;
        display: flex;
        background: #000;
    }

    .item4 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        z-index: 1;
        opacity: 0.8;
        transition: 0.5s;
    }

    .item4:hover img {
        opacity: 1;
    }

    .text4 {
        position: absolute;
        z-index: 3;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        grid-gap: 30px;
        background: rgba(0, 0, 0, 0.05);
        opacity: 1;
        transition: 0.5s;
    }

    .item4:hover .text4 {
        z-index: 2;
        opacity: 0;
    }

    .text4 h1 {
        color: #FFF;
        text-align: center;
        font-family: "Playfair Display";
        font-size: 36px;
        letter-spacing: 0.3px;
    }

    .text4 p {
        color: #FFF;
        text-align: center;
        font-size: 14px;
        font-weight: 700;
        width: 48px;
        height: 48px;
        background: var(--color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .desc4 {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        z-index: 2;
        padding: 45px;
        background: linear-gradient(180deg, #00000000 0%, #000000cc 80%);
        opacity: 0;
        transition: 0.5s;
    }

    .item4:hover .desc4 {
        z-index: 3;
        opacity: 1;
    }

    .desc4 h1 {
        color: #FFF;
        font-family: "Playfair Display";
        font-size: 36px;
        letter-spacing: 0.3px;
        margin-bottom: 15px;
    }

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

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

    @media (max-width: 1440px) {
        .desc4 h2 {
            font-size: 14px;
        }

        .desc4 h1,
        .text4 h1 {
            font-size: 28px;
        }


    }

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

        .desc4 h1,
        .text4 h1 {
            font-size: 24px;
        }

        .desc4 h1 {
            margin-bottom: 5px;
        }

        .desc4 {
            padding: 15px;
        }
    }

    @media (max-width: 900px) {
        .section4 {
            padding-left: var(--container);
            padding-right: var(--container);
        }

        .section4 .BaseTitle {
            padding-left: 0;
            padding-right: 0;
        }

        .Box4 {
            flex-wrap: wrap;
            height: auto;
            grid-gap: 30px;
        }

        .item4 {
            width: calc(50% - 30px);
            height: 65vw;
        }
    }

    @media (max-width: 600px) {
        .Box4 {
            margin-top: 30px;
            flex-wrap: wrap;
            height: auto;
            grid-gap: 10px;
        }

        .item4 {
            width: calc(50% - 5px);
            height: 65vw;
        }

        .text4 {
            grid-gap: 10px;
        }

        .text4 p {
            font-size: 12px;
            font-weight: 500;
            width: 42px;
            height: 42px;
        }

        .desc4 h1,
        .text4 h1 {
            font-size: 18px;
        }

        .desc4 h2 {
            font-size: 12px;
        }
    }

    @media (max-width: 400px) {
        .desc4 h1 {
            display: none;
        }
    }
