a {
    text-decoration: none;
}

.col-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricingTable {
    width: 300px;
    padding-bottom: 20px;
    background: #fff;
    border-radius: 10px;
    text-align: center;
    position: relative;
    transition: all .3s ease 0s
}

.pricingTable .title {
    padding: 20px 20px 120px;
    margin: 0 0 16px;
    background: linear-gradient(to bottom right, #fa6fe6, #ffef65);
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    overflow: hidden;
    position: relative;
}

.pricingTable .title:after,
.pricingTable .title:before {
    content: "";
    width: 280px;
    height: 190px;
    border-radius: 80px;
    background: #fff;
    position: absolute;
    bottom: -153px;
    left: -46px;
    transform: rotate(-90deg);
}

.pricingTable .title:after {
    border-radius: 100px;
    bottom: auto;
    top: 100px;
    left: auto;
    right: -46px;
    transform: rotate(-28deg);
}

.pricingTable .price-value {
    display: inline-block;
    width: 100px;
    height: 100px;
    line-height: 30px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 8px rgba(0, 0, 0, .3);
    padding: 30px 0;
    font-size: 28px;
    font-weight: 600;
    color: #404040;
    position: absolute;
    top: 70px;
    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: 16px;
}

.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 40px;
    font-size: 14px;
    font-weight: 500;
    color: #222222;
    letter-spacing: 1px;
    position: relative;
}

.pricingTable .pricing-content li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 800;
    width: 20px;
    font-size: 12px;
    height: 20px;
    line-height: 18px;
    padding-left: 1px;
    border-radius: 50%;
    border: 2px solid #77D970;
    color: #77D970;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
}



.pricingTable .pricing-content li.disable:before {
    content: "\f00d";
    border: 2px solid #FF6464;
    color: #FF6464;
}

.pricingTable .pricing-content li.disable {
    color: #707070;
    -webkit-text-decoration-line: line-through;
    /* Safari */
    text-decoration-line: line-through;

}

.pricingTable .pricingTable-signup {
    width: 130px;
    display: inline-block;
    appearance: none;
    background-color: #EBEBEB;
    border-width: 0;
    box-sizing: border-box;
    color: #000000;
    cursor: pointer;
    display: inline-block;
    font-family: Clarkson, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1em;
    margin: 0;
    opacity: 1;
    outline: 0;
    padding: 0.75em;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-rendering: geometricprecision;
    text-transform: uppercase;
    transition: opacity 300ms cubic-bezier(.694, 0, 0.335, 1), background-color 100ms cubic-bezier(.694, 0, 0.335, 1), color 100ms cubic-bezier(.694, 0, 0.335, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: baseline;
    white-space: nowrap;
}

.pricingTable .pricingTable-signup:before {
    animation: opacityFallbackOut .5s step-end forwards;
    backface-visibility: hidden;
    background-image: linear-gradient(to top, #96fbc4 0%, #f9f586 100%);
    clip-path: polygon(-1% 0, 0 0, -25% 100%, -1% 100%);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: translateZ(0);
    transition: clip-path .5s cubic-bezier(.165, 0.84, 0.44, 1), -webkit-clip-path .5s cubic-bezier(.165, 0.84, 0.44, 1);
    width: 100%;
    border: 1px solid #888888;
}

.pricingTable .pricingTable-signup:hover:before {
    animation: opacityFallbackIn 0s step-start forwards;
    clip-path: polygon(0 0, 101% 0, 101% 101%, 0 101%);
}

.pricingTable .pricingTable-signup:after {
    background-color: #FFFFFF;
}

.pricingTable .pricingTable-signup span {
    z-index: 1;
    position: relative;
}

@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
    }
}

.pricing-section {
    background-image: linear-gradient(to top, #dfe9f3 0%, white 100%);
}