.demo {
    background: #f8f9fa;
    padding: 30px 0
}

a {
    text-decoration: none;
}

.pricingTable {
    padding-bottom: 20px;
    background: #fff;
    border-radius: 10px;
    text-align: center;
    position: relative;
    transition: all .3s ease 0s
}

.pricingTable .title {
    padding: 40px 20px 170px;
    margin: 0 0 30px;
    background: linear-gradient(to bottom right, #fa6fe6, #ffef65);
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    overflow: hidden;
    position: relative
}

.pricingTable .title:after,
.pricingTable .title:before {
    content: "";
    width: 280px;
    height: 200px;
    border-radius: 80px;
    background: #fff;
    position: absolute;
    bottom: -175px;
    left: -46px;
    transform: rotate(-85deg)
}

.pricingTable .title:after {
    border-radius: 100px;
    bottom: auto;
    top: 150px;
    left: auto;
    right: -70px;
    transform: rotate(-40deg)
}

.pricingTable .price-value {
    display: inline-block;
    width: 140px;
    height: 140px;
    line-height: 65px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 8px rgba(0, 0, 0, .3);
    padding: 30px 0;
    font-size: 30px;
    font-weight: 600;
    color: #404040;
    position: absolute;
    top: 110px;
    left: 50%;
    transform: translateX(-50%);
    transition: all .3s ease 0s
}

.pricingTable:hover .price-value {
    background: linear-gradient(to bottom, #fa6fe6, #ffef65);
    color: #fff
}

.pricingTable .month {
    display: block;
    font-size: 16px;
    font-weight: 400;
    line-height: 0
}

.pricingTable .pricing-content {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    text-align: left;
    transition: all .3s ease 0s
}

.pricingTable .pricing-content li {
    padding: 7px 0 7px 50px;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    letter-spacing: 1px;
    position: relative
}

.pricingTable .pricing-content li:before {
    content: "\2713";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    width: 24px;
    height: 24px;
    line-height: 20px;
    border-radius: 50%;
    border: 2px solid #fb6ee5;
    color: #fb6ee5;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%)
}

.pricingTable .pricing-content li.disable {
    color: #f51f44;
}

.pricingTable .pricing-content li.disable:before {
    display: none
}

.pricingTable.blue .title {
    background: linear-gradient(to bottom right, #44f2b5, #4cbde2)
}

.pricingTable.blue:hover .price-value {
    background: linear-gradient(to bottom, #44f2b5, #4cbde2)
}

.pricingTable.blue .pricing-content li:before {
    border-color: #44f2b5;
    color: #44f2b5
}

.pricingTable.green .title {
    background: linear-gradient(to bottom right, #66fd9c, #f6fa60)
}

.pricingTable.green:hover .price-value {
    background: linear-gradient(to bottom, #66fd9c, #f6fa60)
}

.pricingTable.green .pricing-content li:before {
    border-color: #66fd9c;
    color: #66fd9c
}


@media only screen and (max-width:990px) {
    .pricingTable6 {
        margin-bottom: 30px
    }
}

@media only screen and (max-width:767px) {
    .pricingTable6 .title:before {
        height: 400px;
        top: 100px;
        left: 55px
    }

    .pricingTable .title:after {
        width: 550px;
        height: 550px;
        top: 150px;
        right: -100px;
        transform: rotate(-20deg)
    }
}

@media only screen and (max-width:480px) {

    .pricingTable .title:after,
    .pricingTable .title:before {
        width: 280px;
        height: 200px;
        top: 220px;
        left: -46px
    }

    .pricingTable .title:after {
        top: 150px;
        left: auto;
        right: -70px
    }
}