.healthInsuranceCover {
    margin: 40px auto 0px;
    padding: 50px 0px;
    width: 100%;
    background-color: #f6f6f6;
}

.sectionTitle {
    font-family: "Rubik-Bold";
    font-weight: normal;
    color: #005596;
    font-size: 3rem;
    text-align: center;
    text-transform: uppercase;
}

.healthCovers {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.healthCovers li{
    width: 29%;
    padding: 20px;
    margin: 50px 40px 0px 0px;
    background-color: #fff;
    text-align: center;
    box-shadow: 0 0 20px 3px #e0e0e0;
}

.healthCovers li:nth-child(3), .healthCovers li:last-child {
    margin-right: 0;
}

.healthCovers li h4 {
    font-family: "Rubik-Bold";
    font-weight: normal;
    color: #005596;
    font-size: 2rem;
    text-transform: uppercase;
    margin: 15px 0px 10px;
}

.healthCovers li p {
    font-family: "Rubik-Regular";
    color: #000000;
    font-size: 1.4rem;
    height: 100px;
}

.healthCovers li .btn {
    margin-top: 20px;
    padding: 3px 27px;
    font-size: 1.6rem;
}

/********Media Query Start*********/
@media only screen and (max-width: 1024px){
    .sectionTitle {
        font-size: 2.5rem;
    }

    .healthCovers li {
        width: 45%;
        margin: 50px 30px 0px 0px;
    }

    .healthCovers li:nth-child(2), .healthCovers li:nth-child(4), .healthCovers li:last-child {
        margin-right: 0px;
    }

    .healthCovers li:nth-child(3) {
        margin-right: 30px;
    }

    .healthCovers li h4 {
        font-size: 1.8rem;
    }

    .healthCovers li p {
        font-size: 1.3rem;
        height: 80px;
    }
}

@media only screen and (max-width: 640px){
    .healthCovers li {
        width: 90%;
        margin: 50px 0px 0px 0px;
    }

    .healthCovers li:nth-child(3) {
        margin-right: 0px;
    }

    .healthCovers li p {
        height: auto;
    }
}
/********Media Query End*********/