.pricing-container{
    padding: 50px 0;
    overflow: hidden;
}

.pricing-head-text{
    text-align: center;
    color: #EA0E86;
    margin-bottom: 50px !important;
}

.pricing-sub-container{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.pricing-body{
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .25), 0 3px 10px 5px rgba(0, 0, 0, 0.05) !important;
    width: 90%;
    height: 350px;
    /* padding: 20px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: baseline;
    gap: 20px;
    border-radius: 4px;
    margin: 0 auto;
}

.pricing-header{
    border-radius: 4px 4px 0px 0px;
    font-size: 20px;
    background-color: #99148A;
    width: 100%;
    padding: 20px;
    text-align: center;
    color: #fff;
}

.plans-name{
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0;
    /* color: #EA0E86; */
}

/* .price-img{
    width: 100px;
} */

.price-text-container{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    height: 120px;
    width: 200px;
}

.price-icon{
    height: 60px;
}

.price-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.price-text{
    font-size: 28px;
    margin-bottom: 0 !important;
    font-weight: 500;
}

.price-gst{
    font-size: 24px;
    margin-bottom: 0 !important;
    font-weight: 500;
}

.price-btn-container{
    height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.btn-link{
    font-size: 16px;
}

.price-btn{
    padding: 5px 15px;
    border: none;
    border-radius: 4px;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .25), 0 3px 10px 5px rgba(0, 0, 0, 0.05) !important;
    background-color: #EA0E86;
    color: #fff;
}

.price-btn:hover{
    opacity: 0.8;
}

@media (max-device-width: 1200px) {
    .pricing-sub-container{
        grid-template-columns: repeat(2, 1fr);
        gap: 5% 0;
    }
}

@media (max-device-width: 768px) {
    .pricing-sub-container{
        grid-template-columns: repeat(1, 1fr);
        gap: 25px 0;
    }
    .pricing-body{
        width: 100%;
    }
}