header{
    padding: 20px 0px;
}
section
{
    padding: 50px 0px;
    background: linear-gradient(to right, #e8f2fb 20%, #aef6f2 90%);
    min-height: 100vh;
}

.card{
    background-color: white;
    border:0px;
    border-radius: 24px;
    padding: 20px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    transition: all 0.3s ease-in-out;
}

.card:hover{
    transform: scale(1.05);
}

.card .img-container {
    padding: 20px 0px;
    min-height: 150px;
    align-content: center;
}

.card .desc{
    text-align: center;
}

.card h2{
    color: #468fc9;
    font-size: 18px;
    margin-bottom: 20px;
}

.btn.btn-primary{
    background: linear-gradient(to bottom, #30c2c5 15%, #468fc9 90%);
    border-radius: 24px;
    border: 0px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s linear;
    padding: 8px 20px;
}

.btn.btn-primary:hover{
    background: linear-gradient(to bottom, #468fc9 15%, #30c2c5 90%);
}