body {
    margin: 0;
    padding: 0;
    line-height: 20px;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
    padding: 0;
    margin: 0;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

.clear {
    clear: both;
}
/******* banner start*******/
.allplans-inner {
    background-image: url(../images/allplans-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 200px 0;
    position: relative;
}
.allplans-inner::after{
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #00000042;
}
.allplans-inner  h1{
    font-weight: bold;
    color: #000000;
    font-size: 45px;
    position: relative;
    z-index: 1;
     background-color: #bce48f;
     padding:0px 5px;
     display: inline-block;
}

@media screen and (min-width:320px) and (max-width:990px) {
.allplans-inner {
    padding:100px 0;
}
.allplans-inner  h1{
    font-weight: bold;
    color: #ffffff;
    font-size: 25px;
}
}
/******* banner end*******/
/******* all-plan start*******/
.all-plans {
    padding: 40px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}
.all-plans .container{
    width: 80%;
}


.all-plans .plan-name h5 {
    padding: 5px 0;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    text-transform: capitalize;
}

.all-plans .start-price p {
    padding: 8px 0;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    text-transform: capitalize;
}

.all-plans .cut-price p {
    color: #ff1111;
    text-decoration: line-through;
    font-size: 18px;
    padding-bottom: 3px;
}

.all-plans .main-price p {
    color: #ffffff;
    font-size: 18px;
    padding-bottom: 3px;
    font-weight: bold;
}

.all-plans .plan-details {
    color: #fff;
    padding: 8px 0;
}


.all-plans .card {
    position: relative;
    width: 100%;
    height: 450px;
    background: #556cab;
    margin: 30px 0;
    border-radius: 20px;
    border-bottom-left-radius: 180px;
    border-bottom-right-radius: 180px;
    box-shadow: 0 15px 0 #fff,
        inset 0 -15px 0 rgba(255, 255, 255, 0.25),
        0 30px 0 rgba(0, 0, 0, 0.15);
    overflow: hidden;
    display: flex;
    align-items: center;
    border: none;
}

.all-plans .card::before {
    content: "";
    position: absolute;
    top: -140px;
    left: -40%;
    width: 100%;
    height: 120%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2));
    transform: rotate(35deg);
    pointer-events: none;
    filter: blur(5px);
}

.all-plans .row:nth-child(1) .card {
 background: linear-gradient(#cbdbae, #757758fa);
}

.all-plans .row:nth-child(2) .card {
 background: linear-gradient(#cbdbae, #757758fa);
}

.all-plans .row:nth-child(3) .card {
    background: linear-gradient(#cbdbae, #757758fa);
}

.all-plans .card .icon {
    position: relative;
    width: 140px;
    height: 128px;
    background-color: #ffffff;
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 100px;
    box-shadow: 0 10px 0 rgba(0, 0, 0, 0.1),
        inset 0 -8px 0 #fff;
    /* z-index: 1000; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.all-plans .card .icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: -50px;
    width: 50px;
    height: 50px;
    background: transparent;
    border-top-right-radius: 50px;
    box-shadow: 15px -15px 0 15px #ffffff;
}

.all-plans .card .icon::after {
    content: "";
    position: absolute;
    top: 0;
    right: -50px;
    width: 50px;
    height: 50px;
    background: transparent;
    border-top-left-radius: 50px;
    box-shadow: -15px -15px 0 15px #ffffff;
}

.all-plans .card .icon i {
    color: #decb61;
    position: relative;
    font-size: 4em;
    z-index: 1000;
}

.all-plans .card .icon img {
    width: 85%;
    /* z-index: 1000; */
}

.all-plans .content {
    position: absolute;
    width: 100%;
    padding: 30px;
    padding-top: 140px;
    text-align: center;
}


.all-plans .planall-btn {
    padding: 7px 20px;
    border-radius: 10px;
    background-color: #ffffff;
    color: #000000;
    border-left: 5px solid #bde77b;
    border-right: 5px solid #bde77b;
    font-weight: bold;
    font-size: 14px;
    text-transform: capitalize;
    margin: 12px 0;
    border-top: none;
    border-bottom: none;
    transition: 0.5s;
}

.all-plans .planall-btn:hover {
    border-left: 5px solid #a9e24d;
    border-right: 5px solid #a9e24d;
    background: #c3c48d;
    color: #000000;

}
@media (max-width:990px){
    .all-plans .container{
        width:100%;
    }
}
/******* all plan end*******/