/* Change font to Poppins */
.allPlans{
    margin-top: 40px;
    list-style: none;
    /* background: #f0f0f0; */
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px
}
.plan{
    position: relative;
    background: #fff;
    max-width: 420px;
    width: 100%;
    padding: 18px;
    padding-bottom: 0;
    box-shadow: 8px 6px 10px #eee;
    border-radius: 12px;
    /* border: 2px solid #121212; */
    border: 2px solid #a8a4a4;
    /* display: grid;
    place-items: center; */
    transition: all ease .3s;
}
.title{
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    text-align: center;   
    z-index: 0;
}
.holderBal{
    background: #121212;
    max-width: fit-content;
    margin: auto;
    font-size: 1.2rem;
    padding: 10px 15px;
    color: #fff;
    position: relative;
    box-shadow: 5px 4px 5px #eee;
    /* border-radius: 12px; */
    /* outline: 2px  #121212; */
    border-radius: 4px;
    outline-offset: 2px;
}
.bene{
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}
/* }
.holderBal::after{
    position: absolute;
    content: '';
    height: 50px;
    width: 50px;
    background: #121212;
    left: -14px;
    top: 10px;
    z-index: 0;
    border-radius: 6px;
    transform: rotate(30deg);
} */

.card{
    padding: 20px;
    /* background: red; */
}

.balance{
    text-align: center;
    font-size: 1.2rem;
    font-weight: 900;
    border: 2px solid #a8a4a4;
    padding: 20px 5px;
    box-shadow: 2px 3px 4px #eee;
    border-radius: 12px;
}
.benefits{
    list-style:disc;
    /* lis */
    margin-top: 20px;
    border: 1px solid #a8a4a4;
    border-radius: 12px;
    padding: 15px 30px;
     box-shadow: 2px 3px 4px #eee;
    /* background: dodgerblue; */
}
.sub{
    margin-top: 20px;
    /* background: red; */
    text-align: center;
}
.sub button{
    padding: 12px 34px;
    background: purple;
    /* border-radius: 16px; */
    font-size: 1.1rem;
    border-radius: 12px;
    color: #fff;
    border: 2px solid #121212;
}

@media (max-width: 1030px) {
    .allPlans{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 710px) {
    .allPlans{
        grid-template-columns: repeat(1, 1fr);
        width: 100%;
    }
    .plan{
        max-width: 710px;
        width: 100%;
    }
}