#hproducts {
    height: auto;
    padding: 10px 50px;
    gap: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.piece {
    box-shadow: 0 0 40px rgba(00, 0, 0, 0.12);
    border-radius: 12px;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.pieceModified {
    width: 100%;
    height: auto;
    display: flex;
    /* gap: 3rem; */
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.pieceModified img {
    height: 100%;
    width: 100%;
}

.haction {
    /* border: 2px solid red; */
    margin-top: 30px;
}

.haction a {
    transition: 0.4s ease;
    background: var(--primary);
    color: white;
    padding: 10px 30px;
    border-radius: 4px;
    text-decoration: none;
}

.haction a:hover {
    background: var(--hovered);
}



.mainHeading {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 40vh;
    background: url("https://img.freepik.com/free-vector/abstract-background-with-squares_23-2148995948.jpg?w=1060&t=st=1665766770~exp=1665767370~hmac=6880d0e9100115db6708d5e6c8db7e41ea43481dadf97393caa5cdbaafea967b");
    background-position: center;
    background-size: cover;
}

.mainHeading h1 {
    /* border: 2px solid red; */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.7rem;
    padding: 40px;
    font-size: 37px;
}

.mainHeading h1 span.markEffect {
    /* color: white; */
    font-size: 40px;
    color: var(--primary);
}


.leftPart {
    /* border: 2px solid red; */
    height: 13vh;
    width: 0.5vw;
    background: var(--primary);
}

.rightPart {
    /* border: 2px solid red; */
    height: 13vh;
    width: 0.5vw;
    background: var(--primary);
}
.actionAllofthem{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}


@media screen and (max-width: 600px) {


    #hproducts {
        height: auto;
        padding: 20px;
        gap: 3rem;
        display: grid;
        grid-template-columns: 1fr;
    }
    

    .mainHeading {
        /* flex-direction: column; */
        height: 77vh;

    }

    .mainHeading h1 {
        /* border: 2px solid red; */
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 0.7rem;
        padding: 40px;
        font-size: 32px;
    }

    .mainHeading h1 span.markEffect {
        color: var(--primary);
        text-align: center;
    }
}