.pricing-table {
    display: flex;
    justify-content: space-around;
}

h2.pricing-item-name {
    text-align: center;
    padding: 20px;
}

.pricing-item-price {
    text-align: center;
    padding: 0px 0px 50px;
}

.pricing-item {
    flex-basis: 50%;
    border: 1px solid #efefef;
    padding: 20px 30px 60px;
    background-color: white;
    display: flex;
    flex-direction: column;
}
.pricing-item:nth-child(2) {
    box-shadow: 0px 0px 33px rgba(0, 0, 0, 0.2);
    z-index: 100;
}

.pricing-item h3 {
    font-size: 2.45em;
    font-width: bolder;
}

.pricing-item h3 span {
    font-size: 0.5em;
    font-weight: normal;
}

.pricing-item ul {
    color: #2b2b2b;
    font-weight: 100;
}

.pricing-item li {
    line-height: 1.5em;
    padding: 4px 0px;
}

.pricing-item-features{
    flex-basis: 70%;
}


/* specific items */
.pricing-item h3 {
    font-size: 2.45em;
}

.pricing-item h3 span {
    font-size: 0.5em;
}

#freelancer-pricing h2 {
    color: #10a8f7;
}

#business-pricing h2 {
    color: #ec199e;
}

#enterprise-pricing h2 {
    color: #5330ff;
}
#business-pricing{
    padding-bottom: 14px;
}

/* buttons */
.pricing-button {
    margin-top: 40px;
    text-align: center;
}
.pricing-button .btn {
    background-color: white;
    box-shadow: none;
    border: 2px solid;
    min-width: 80%;
    height:auto;
    line-height: 1em;
    padding: 10px 20px;
    font-size: 1.1em;
}


#freelancer-pricing .btn{
    color: #10a8f7;
    border-color: #10a8f7;
}
#freelancer-pricing .btn:hover{
    color: white;
    background: #10a8f7;
}

#business-pricing .btn{
    color: #ec199e;
    border-color: #ec199e;
}
#business-pricing .btn:hover{
    color: white;
    background: #ec199e;
}

#enterprise-pricing .btn{
    color: #5330ff;
    border-color: #5330ff;
}
#enterprise-pricing .btn:hover{
    color: white;
    background: #5330ff;
}

/* iPad */
@media only screen
and (min-width : 768px)
and (max-width : 1024px)  {

    .pricing-button .btn{
        width: 100%;
    }

}


/* iPad Portrait */
@media only screen
and (min-width : 768px)
and (max-width : 1024px)
and (orientation : portrait) {


    .pricing-table{
        flex-direction: column;
    }
    .pricing-item{
        margin: 20px;
    }
    .pricing-item:nth-child(2){
        box-shadow: none;
    }


}



/* iPhone */
@media only screen
and (min-width : 320px)
and (max-width : 736px) {

    .page-content .pricing {
        margin-top: 30px;
        text-align: center;
    }

    .pricing-table{
        display: block;
    }

    .pricing-item:nth-child(2){
        box-shadow: none;
    }

    .pricing-item{
        border: none;
        margin: 10px 0px;
    }
    .pricing-item ul{
        list-style: none;
        padding-left: 0px;
    }

}