    /* box2 */
    .section2 {
        display: block;
    }

    .Box2 {
        position: relative;
        width: 100%;
        overflow: hidden;
        border-radius: 120px 0 120px 0;
        display: flex;
        grid-gap: 30px;
    }

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

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

    .Box2 a .text2 {
        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;
    }

    .Box2 a:hover .text2 {
        height: 100%;
    }

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

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

    .Box2 a .text2 span:hover {
        color: #fff;
        background-color: #505050;
    }


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

        .Box2 a .text2 h1 {
            font-size: 16px;
        }

        .Box2 a .text2 span {
            padding: 5px 15px;
        }
    }

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

    @media (max-width: 460px) {
        .Box2 {
            display: flex;
            flex-wrap: wrap;
            grid-gap: 15px;
        }
    }

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