.pricing-container{
    padding: 50px 0;
    overflow: hidden;
    background: #232526;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #414345, #232526);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #414345, #232526); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    position: relative;
    color: #fff;
}

.pricing-gradient{
    background: rgb(84,115,39);
    background: linear-gradient(90deg, rgba(84,115,39,1) 0%, rgba(217,203,17,1) 33%, rgba(64,84,107,1) 66%, rgba(69,69,69,1) 100%);
    width: 100%;
    position: absolute;
    height: 100%;
    z-index: -1;
}

.pricing-heading{
    width: fit-content;
    margin: auto;
    padding-bottom: 1px;
    border-bottom: 2px solid #004063;
    margin-bottom: 40px;
}

.pricing-sub-heading{
    font-weight: 700;
    margin-bottom: 0;
    background-color: #121212;
    width: 100%;
    height: 100%;
    padding: 10px 20px;
}

.pricing-content-container{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.pricing-body{
    max-width: 350px;
    /* height: 270px; */
    width: 100%;
    margin: 0 auto;
    /* background-color: #fff; */
    border-radius: 0px;
    /* padding: 10px 20px; */
    border-top: 4px solid transparent;
    background: rgb(84,115,39);
    background: linear-gradient(90deg, rgba(34,193,195,1) 0%, rgba(253,187,45,1) 100%);
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    box-shadow: 0px 0px 24px 0px rgba(0,0,0,0.1);
}

.price-content{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    width: 100%;
    font-weight: 700;
    font-size: 35px;
    padding: 0px 20px 10px;
    background-color: #121212;
}

.price-text{
    margin-bottom: 0;
}

.gst-text{
    font-size: 20px;
}

.price-bottom{
    width: 100%;
    height: 100%;
    background-color: #121212;
    padding: 0 20px 20px;
}

.price-tag{
    margin-bottom: 50px;
}

.price-btn{
    display: block;
    text-decoration: none;
    color: #fff;
    border: #fff solid 1px;
    width: 100%;
    text-align: center;
    font-weight: 600;
    padding: 10px 20px;
}

.price-btn:hover{
    background: #1CD8D2;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #93EDC7, #1CD8D2);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #93EDC7, #1CD8D2); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    color: #000;
    border-color: #1CD8D2;
}

@media (max-device-width: 1540px){
    .pricing-content-container{
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-device-width: 1200px){
    .pricing-content-container{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-device-width: 992px){
    .pricing-content-container{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-device-width: 768px){
    .pricing-content-container{
        grid-template-columns: repeat(1, 1fr);
    }
}