.pricing-container {
    padding: 50px 0;
    background-color: #fff;
}

.pricing-head-text {
    text-align: center;
    font-weight: 600;
    color: #2181C4;
}

.pricing-sub-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 40px;
}

.pricing-body {
    -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.75);
    width: 90%;
    margin: auto;
    height: 360px;
    border-radius: 4px;
    position: relative;
    /* color: #fff; */
}

.pricing-head-container{
    background: #2181C4;
    padding: 5px;
    border-bottom: 5px solid #2181C4;
}

.pricing-head-container:after {
    content:'';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 32%;
    margin: 0 auto;
    width: 0;
    height: 0;
    border-top: 25px solid #2181C4;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
}

.pricing-head{
    color: #fff;
    text-align: center;
    margin-bottom: 0;
    margin: 10px 10px 25px 10px;
    font-size: 1.5rem;
    font-weight: 600;
}

.price-icon{
    height: 40px;
}

.price-text-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* gap: 20px; */
    margin-bottom: 25px;
}

.price-container{
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    margin-bottom: 30px;
}

.price-text-content-container{
    height: 45px;
}

.price-text{
    font-size: 35px;
    margin-bottom: 0;
    color: #fff;
}

.price-gst{
    font-size: 28px;
    margin-bottom: 0;
    color: #fff;
}

.btn-container{
    width: 100%;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

.btn-text{
    margin-bottom: 15px;
    text-align: center;
}

.btn-now{
    padding: 5px 12px;
    margin: 0;
    border: none;
    background-color: #2181C4;
    color: #fff;
    text-decoration: none;
    text-align: center;
    border-radius: 4px;
    /* display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center; */
}

.btn-now:hover{
    opacity: 0.8;
    color: #fff;
}

@media (max-device-width: 1400px){
    .price-text {
        font-size: 33px;
    }
    .pricing-sub-container{
        grid-template-columns: repeat(3, 1fr);
        gap: 30px 10px;
    }
}

@media (max-device-width: 1200px){
    .pricing-sub-container{
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 30px;
    }
    .pricing-body {
        max-width: 285px;
        margin: 0;
    }
    .pricing-body:nth-child(odd) {
        margin-left: auto;
    }
    .pricing-body:nth-child(even) {
        margin-right: auto;
    }
}

@media (max-device-width: 1200px){
    .pricing-sub-container{
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 30px;
    }
    .pricing-body {
        max-width: 285px;
        margin: 0;
    }
    .pricing-body:nth-child(odd) {
        margin-left: auto;
    }
    .pricing-body:nth-child(even) {
        margin-right: auto;
    }
}


@media (max-device-width: 560px){
    .pricing-sub-container{
        grid-template-columns: repeat(1, 1fr);
        gap: 30px 0;
    }
    .pricing-body {
        max-width: 285px;
        margin: auto;
    }
}

@media (max-device-width: 300px){
    .pricing-body{
        width: 100%;
    }
}