body {
    background-color: #F2F2F2;
    font-family: 'Roboto ', sans-serif;
}


.hero-image {
    /* background-image: linear-gradient(63deg, rgba(121, 121, 121, 0.7)0%, rgba(0, 212, 255, 0.2)100%), url("images/home-page-min.png"); */
    /* height: 500px !important; */
    padding-top: 26.5%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

/* Place text in the middle of the image */
.hero-text {
    text-align: center;
    position: absolute;
    top: 40%;
    left: 20%;
    transform: translate(-40%, -20%);
    color: white;
    width: 30%;
}

.product-card-container {
    width: 83%;
    margin: auto;
}

.product-card {
    box-shadow: 0px 0px 47px -3px rgb(0 0 0 / 30%);
    background: rgba(255, 255, 255, 0.1);
    width: 98%;
    margin: auto;

}

.product-card img {
    transition: all 0.4s;
    width: 100%;
    height: 380px;
    object-fit: fill;
}

.product-card img:hover {
    /* transform: scale(0.95); */
}

.pro-view-btn {
    padding: 6.5px 30px;
    font-size: 14px;
    font-weight: 700;
}


@media screen and (max-width: 480px) {

    .hero-image {

        /* height: 500px !important; */
        padding-top: 56.5%;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
    }

    .product-card-container {
        width: 100%;
        margin: auto;
    }

    .product-card {
        box-shadow: 0px 0px 47px -3px rgb(0 0 0 / 30%);
        background: rgba(255, 255, 255, 0.1);
        width: 100%;
        margin: auto;

    }

    .product-card img {
        transition: all 0.4s;
        width: 100%;
        height: 190px;
        object-fit: fill;
    }

    .product-card-title{
        font-size: 12px;
    }


}

@media screen and (min-width: 768px) and (max-width: 1024px) {

    .product-card-container {
        width: 100%;
        margin: auto;
    }

    .product-card {
        box-shadow: 0px 0px 47px -3px rgb(0 0 0 / 30%);
        background: rgba(255, 255, 255, 0.1);
        width: 100%;
        margin: auto;
    }

    .product-card img {
        transition: all 0.4s;
        width: 100%;
        height: 290px;
        object-fit: fill;
    }
}