html, body {
    margin: 0px;
    padding: 0px;
}

.main-container {
    background-color:#FFF;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    padding: 0px;
}
.jax-header {
    height: 70px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}
.jax-header a {
    color: #05396B !important;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 700 !important;
    font-size: 20px !important;
    text-decoration: none;
}
.products-list {
    width: 90%;
    height: fit-content;
    margin: auto;
    padding: 50px 0px;
}
.main-column {
    float: left;
    width: 450px;
    padding: 0 20px;
}
.main-row {
    margin: auto;
    padding-top: 50px;
    width: fit-content;
}
.main-row:after {
    content: "";
    display: table;
    clear: both;
}
.card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    padding: 20px 15px;
    text-align: center;
    background-color: #FFF;
    height: 250px;
    display: flex;
    flex-direction: column;
    border-top: 10px solid #0177B2;
    border-radius: 10px;
}

.card h2 {
    color:#000000;
    font-weight: bold;
    font-size: 26px;
    margin: 15px 0px;
}

.card-content {
    text-align: left;
    line-height: 2.5;
    font-size: 14px;
    padding: 10px 25px;
    height: 120px;
}
.card-content a{
    color: #0177B2;
}

.discover-card {
    line-height: 2.5;
    font-size: 14px;
    padding: 0px 25px;
    height: 80px;
    color: #0177B2;
    background-color: aliceblue;
    width: 250px;
    margin: 20px;
    border-radius: 10px;
}
.discover-card a {
    padding: 25px 0px;
    margin: auto;
    text-align: center;
    display: block;
    text-decoration: none;
    color: #0177B2;
}
.discover-card a:hover {
    cursor: pointer;
    color: #000000;
    text-decoration: none;
}
.product-header {
    margin: auto;
    width: 500px;
    color: #000000;
    text-align: center;
    padding-top: 10px;
}
.product-header h1{
    font-size: 40px;
    font-weight: bold;
}
.product-header h5 {
    font-size: 14px;
    padding: 10px 0px;
}

.product-button {
    color: #FFF;
    background-color: #0177B2 !important;
    margin: auto;
    border: none;
    padding: 10px 25px;
    cursor: pointer;
    border-radius: 10px !important;
    font-size: 14px;
}
@media only screen and (max-width: 1600px) and (min-width: 1200px) {

    .card-content {
        line-height: 2.5;
        padding: 20px 25px;
        height: 350px;
    }
}

@media only screen and (max-width:1200px) {
    .card {
        height: 400px;
    }
    .card-content {
        line-height: 1.5;
        padding: 20px 25px;
        height: 350px;
    }
}
