/*====================================
Premium Budget
====================================*/
 
.ww-destination-budget{
    padding:100px 0;
    background:#fff;
}
 
.ww-budget-grid{
 
    display:grid;
 
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
 
    gap:28px;
 
}
 
.ww-budget-card{
 
    background:#fff;
 
    border-radius:22px;
 
    padding:32px;
 
    border:1px solid #ECECEC;
 
    box-shadow:0 18px 45px rgba(0,0,0,.06);
 
    transition:.35s;
 
    position:relative;
 
    overflow:hidden;
 
}
 
.ww-budget-card:hover{
 
    transform:translateY(-8px);
 
    box-shadow:0 28px 65px rgba(0,0,0,.12);
 
}

.ww-budget-card::before{
 
    content:"";
 
    position:absolute;
 
    top:0;
 
    left:0;
 
    width:100%;
 
    height:5px;
 
    background:#2E8B57;
 
}

.ww-budget-card h3{
 
    font-size:24px;
 
    margin-bottom:16px;
 
    color:#132238;
 
}

.ww-budget-price{
 
    font-size:34px;
 
    font-weight:800;
 
    color:#2E8B57;
 
    margin-bottom:20px;
 
}

.ww-budget-card p{
 
    color:#556070;
 
    line-height:1.8;
 
    margin:0;
 
}