.pricing-container{
    padding: 50px 0;
    overflow: hidden;
    background-color: #fff;
    position: relative;
    border-top: #f2fae9 solid 1px;
}

.pricing-sub-container{
    padding: 0 20px;
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
}

.pricing-heading{
    text-align: center;
}

.pricing-content-container{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: fit-content;
}

.pricing-body{
    color: #1a1a1a;
    background-color: #fff;
    box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 350px;
    height: 100%;
    min-height: 400px;
    max-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    padding: 20px 20px;
}

.pricing-sub-heading-container{
    width: 100%;
    text-align: center;
    padding: 20px 0 0px 0;
}

.pricing-sub-heading{
    font-weight: 700;
    font-size: 1.6rem;
}

.price-content{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    height: 100%;
    gap: 30px;
}

.pricing-date-container{
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    padding: 0px 0 40px;
    gap: 10px;
}

.rupees-sign{
    width: auto;
    height: 25px;
    /* filter: invert(100%); */
}

.price-text{
    margin-bottom: 0;
    font-size: 2.5rem;
    height: 44px;
}

.awards-details{
    font-size: 22px;
    text-align: center;
}

.pricing-bottom{
    width: 100%;
    box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.1);
    padding: 10px 20px;
    border-radius: 6px;
}

.pricing-bottom-heading{
    width: fit-content;
    margin: 0 auto 20px;
    text-align: center;
    padding: 10px 0 0;
    border-bottom: #86BD2F solid 1px;
}

.bottom-pricing{
    width: 100%;
}

.pricing-date{
    text-align: center;
}

.pricing-btn-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 10px;
}

.pricing-btn{
    color: #fff;
    background-color: #86BD2F;
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
}

.pricing-btn:hover{
    opacity: 0.9;
}

@media screen and (max-width: 1400px){
    .pricing-content-container{
        grid-template-columns: repeat(3, 1fr);
    }
    .pricing-body:nth-child(4){
        grid-column: 2/3;
    }
}

@media screen and (max-width: 1100px){
    .pricing-content-container{
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-body:nth-child(4){
        grid-column: unset;
    }
}

@media screen and (max-width: 768px){
    .pricing-content-container{
        grid-template-columns: repeat(1, 1fr);
    }
}

@media screen and (max-width: 576px){
    .price-text{
        font-size: 35px;
        height: 38px;
    }
}

@media screen and (max-width: 327px){
    .price-text{
        font-size: 32px;
        height: 35px;
    }
}