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/all-plans.png);
    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: #ffffff;
    font-size: 45px;
    position: relative;
    z-index: 1;
    /* background-color: #bce48f; */
    padding: 0px 5px;
    display: inline-block;
    border: 1px solid white;
    padding: 10px 32px;
    border-radius: 50px;
    transition: 0.3s ease;
    cursor: pointer;

}

.allplans-inner h1:hover {
    background-color: #ad6b08;
    border: 1px solid #ad6b08;
    color: white;
}


@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*******/


.plan-item {
    width: 77%;
    margin-left: 64px;
    padding: 20px;
}

.cut-price p {
    text-decoration: line-through;
    color: rgb(193 93 13);
    font-weight: 600;
    margin-top: 5px;
}

/* .plan-item {
    width: 100%;
    margin-left: 0px;
    padding: 10px;
} */

@media (max-width: 320px) {
    .plan-item {
        width: 95%;
        margin-left: 8px;
        padding: 22px 0;
    }

    /* .plan-price {
        width: 80%;
        padding: 20px 9px;
    } */
    .plan-head {
        margin-top: 33%;
    }

    .plan-head h2 {
        font-size: 31px;
    }
}

/******* all plan end*******/