    /* Box4 */
    .section4 {
        display: block;
    }

    .Box4 {
        margin-top: 45px;
        position: relative;
        width: 100%;
        overflow: hidden;
        border-radius: 120px 0 120px 0;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 30px;
    }

    .Box4 a {
        overflow: hidden;
        border-radius: 5px;
        width: 100%;
        position: relative;
    }

    .Box4 a img {
        position: relative;
        z-index: 1;
        width: 100%;
    }

    .Box4 a .text4 {
        position: absolute;
        left: 0;
        bottom: 0;
        z-index: 2;
        width: 100%;
        height: 0%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        grid-gap: 15px;
        transition: 0.5s;
        background: var(--color);
        opacity: 0.85;
        overflow: hidden;
    }

    .Box4 a:hover .text4 {
        height: 100%;
    }

    .Box4 a .text4 h1 {
        font-size: 20px;
        color: #fff;
        text-align: center;
        padding: 0 15px;
    }

    .Box4 a .text4 span {
        color: #a6937c;
        background: #fff;
        transition: .4s;
        padding: 8px 20px;
        border-radius: 4px;
    }

    .Box4 a .text4 span:hover {
        color: #fff;
        background-color: #505050;
    }


    @media (max-width: 1200px) {
        .Box4 {
            border-radius: 60px 0 60px 0;
            grid-gap: 10px;
        }

        .Box4 a .text4 h1 {
            font-size: 16px;
        }

        .Box4 a .text4 span {
            padding: 5px 15px;
        }
    }

    @media (max-width: 720px) {
        .Box4 {
            margin-top: 15px;
            border-radius: 30px 0 30px 0;
            grid-template-columns: repeat(2, 1fr);
        }
    }

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