@import url('https://fonts.googleapis.com/css?family=Roboto:300');

#price-table-card {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif !important;
    width: 100%;
    min-height: 100vh;
    box-sizing: border-box;
    padding: 140px 0;
}

.cardTx {
    position: relative;
    max-width: 300px;
    height: auto;
    background: linear-gradient(-45deg, #fe0847, #feae3f);
    border-radius: 15px;
    margin: 0 auto;
    padding: 40px 20px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
    transition: 0.5s;
}

.col-sm-4:nth-child(1) .cardTx, .col-sm-4:nth-child(1) .cardTx .titleTx .fa {
    background: linear-gradient(-45deg, #f403d1, #72c0ff); 
}

.col-sm-4:nth-child(2) .cardTx, .col-sm-4:nth-child(2) .cardTx .titleTx .fa  {
    background: linear-gradient(-45deg, #f321d7,  #ffec61); 
}

.col-sm-4:nth-child(3) .cardTx, .col-sm-4:nth-child(3) .cardTx .titleTx .fa  {
    background: linear-gradient(-45deg, #9a4eff, #24ff72); 
}

.cardTx:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
    transform: skewY(-5deg) scale(1.5);
}

.titleTx .fa {
    color: #fff;
    font-size: 60px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    text-align: center; 
    line-height: 100px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}

.titleTx h2 {
    position: relative;
    margin: 20px 0 0;
    padding: 0;
    color: #fff;
    font-size: 28px;
    z-index: 2;
    font-weight: 300;
}

.priceTx {
    position: relative;
    z-index: 2;
}

.priceTx h4 {
    margin: 0;
    padding: 20px 0;
    color: #fff;
    font-size: 60px;
    font-weight: 300;
}

.optionTx {
    position: relative;
    z-index: 2;
}

.optionTx ul {
    margin: 0;
    padding: 0;
}

.optionTx ul li {
    margin: 0 0 10px;
    padding: 0;
    list-style: none;
    color: #fff;
    font-size: 16px;
}

.cardTx a {
    position: relative;
    z-index: 2;
    background: #fff;
    color: #262626;
    width: 150px;
    height: 40px;
    line-height: 40px;
    border-radius: 40px;
    display: block;
    text-align: center;
    margin: 20px auto 0;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transition: 0.5s;
}

.cardTx a:hover {
    text-decoration: none;
    transform: scale(1.1);
}
