.products-wrap{
    padding-top: 20px;
    background-color: #f7f9fc;
    padding-bottom: 40px;
}

.product-wrap{
    display: block;
    position: relative;
    left: 0; top: 0;
    text-align: center;
    height: 400px;
    width: 100%;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    color: white;
    padding: 30px;
}

.product-wrap:hover,
.product-wrap:active{
    color: white;
    text-decoration: none;
}

.product-image-mask{
    opacity: 0.8;
    background: transparent linear-gradient(0, #0062FF00 0%, #cccccc 100%) 0% 0% no-repeat padding-box;
    position: absolute; left: 0; top: 0;
    width: 100%; height: 100%;
}

.product-wrap h2{
    position: relative;
    text-align: center;
    font-size: 36px;
    line-height: normal;
    font-weight: bold;
    width: 100%;
    color: white;
}

.product-wrap p{
    position: relative;
    display: block;
    font-size: 14px;
    font-weight: normal;
    padding: 5px 50px;
}

.product-wrap .button{
    font-weight: bold;
    font-size: 14px;
    color: white;
    background: #FC5609;
    box-shadow: 0 0.9px 2px #24272E40;
    border-radius: 4px;
    display: block;
    width: 300px;
    text-align: center;
    padding: 16px 0;
    position: absolute; bottom: 35px; left: 50%; margin-left: -150px;
}

@media (max-width: 991px) {

    .product-wrap .button{
        width: 200px;
        margin-left: -100px;
    }
}

@media (max-width: 767px){

    .product-wrap{
        margin-bottom: 30px;
    }

    .product-wrap .button{
        width: 90%; left: 5%;
        margin-left: 0;
    }
}

@media (max-width: 576px){

    .product-wrap h2{
        top: 20px;
        font-size: 32px;
    }

    .product-wrap p {
        padding-top: 35px
    }
}