.pricingTable {
    padding: 25px 10px 70px;
    margin: 0 15px;
    text-align: center;
    z-index: 1;
    position: relative
}

.pricingTable:after,
.pricingTable:before {
    content: "";
    position: absolute;
    left: 0
}

.pricingTable .price-value .amount {
    display: inline-block;
    font-size: 50px;
    font-weight: 700
}


.pricingTable:before {
    width: 100%;
    height: 100%;
    background: #fff;
    top: 0;
    z-index: -1;
    -webkit-clip-path: polygon(100% 0, 100% 85%, 50% 100%, 0 85%, 0 0);
    clip-path: polygon(100% 0, 100% 85%, 50% 100%, 0 85%, 0 0)
}

.pricingTable:after {
    width: 70px;
    height: 30px;
    background: #1daa72;
    margin: 0 auto;
    top: 70px;
    right: 0;
    -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
    clip-path: polygon(50% 100%, 0 0, 100% 0)
}

.pricingTable .title {
    padding: 15px 0;
    margin: 0 -25px 30px;
    background: #1daa72;
    font-size: 25px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    position: relative
}

.pricingTable .title:after,
.pricingTable .title:before {
    border-top: 15px solid #51836d;
    border-bottom: 15px solid transparent;
    position: absolute;
    bottom: -30px;
    content: ""
}

.pricingTable .title:before {
    border-left: 15px solid transparent;
    left: 0
}

.pricingTable .title:after {
    border-right: 15px solid transparent;
    right: 0
}

.pricingTable .price-value {
    margin-bottom: 25px;
    color: #1daa72
}

.pricingTable .currency {
    display: inline-block;
    font-size: 30px;
    vertical-align: top;
    margin-top: 8px
}

.price-value .amount {
    display: inline-block;
    font-size: 50px;
    font-weight: 700
}


.pricingTable .pricing-content {
    padding: 0;
    margin: 0 0 25px;
    list-style: none;
    border-top: 1px solid #c4c4c4;
    border-bottom: 1px solid #c4c4c4
}

.pricingTable .pricing-content li {
    font-size: 18px;
    color: #8f8f8f;
    line-height: 55px
}

.pricingTable .pricingTable-signup {
    display: inline-block;
    padding: 13px 40px;
    background: #1daa72;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    overflow: hidden;
    position: relative;
    transition: all .7s ease 0s;
    border-radius: 50px;
}

.pricingTable .pricingTable-signup:before {
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translate(0, 100%);
    transition: all .6s ease-in-out 0s
}

.pricingTable .pricingTable-signup:hover:before {
    opacity: 1;
    transform: translate(0, -100%)
}

.pricingTable.blue .pricingTable-signup,
.pricingTable.blue .title,
.pricingTable.blue:after {
    background: #faac01
}

.pricingTable.blue .title:after,
.pricingTable.blue .title:before {
    border-top: 15px solid #e09b00
}

.pricingTable.blue .price-value {
    color: #faac01
}

.pricingTable.pink .pricingTable-signup,
.pricingTable.pink .title,
.pricingTable.pink:after {
    background: #f06ace
}

.pricingTable.pink .price-value {
    color: #f06ace
}

.pricingTable.pink .title:after,
.pricingTable.pink .title:before {
    border-top: 15px solid #be56a5
}

@media only screen and (max-width:990px) {
    .pricingTable {
        margin-bottom: 30px
    }
}