.product-hero{
    min-height: 50vh;
    background: url('../Images/Landing-pages/oxygen-lance-products-kingdom-lancing.jpeg') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 2em 15%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    z-index: 1;
    background-color: rgba(38, 53, 65, 0.5);
}



.card{
    flex: 1 1 500px;
    justify-content: space-between;
    background: #fff;
    color: var(--text-color);
    text-align: left;
    border-radius: 10px;
    padding: 40px 30px;
    transition: var(--ve-trans);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.card:last-child{
    justify-content: flex-start;
}

.icon-box{
    width: 100%;
    height: auto;
    background: var(--background-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: var(--secondary-color);
    font-size: 1.5rem;
    overflow: hidden;
}
.card-image{
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card img{
    width: 100%;
}

.card .table{
    width: 100%;
    margin: 1em auto;
}

.card .table img{
    width: 100%;
}

@media screen and (max-width:758px){
    
    .middle td,
    .bottom td,
    .head th{
        font-size: .8rem;
    }
}

@media screen and (max-width:425px) {
    .card table .head th,
    .card table .middle td,
    .card table .bottom th{
        padding: 0.5em;
    }
    .middle td,
    .bottom td,
    .head th{
        font-size: .6rem;
    }
}