@font-face
{
    font-family:"DroidKufi";
    src:url("../fonts/DroidKufi-Regular.ttf");
}
body {
    font-family: DroidKufi;
    line-height: 1;
    padding: 20px;
    height: 100%;
    background: #eef0fa url(../images/shattered.jpg);
    color: #000;
    cursor: default;
}

.demo-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 50px;
    color: #515855;
    line-height: 60px;
}

.pricing-table {
    display: table;
    width: 100%;
}
.pricing-table .pricing-option {
    width: 28%;
    background: #119CD3;
    float: right;
    padding: 1%;
    text-align: center;
    transition: all 0.3s ease-in-out;
}
.pricing-table .pricing-option {
    margin: 2.5% 1.5%;
}
.pricing-table .pricing-option:hover {
    cursor: pointer;
    box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.3);
    -webkit-transform: scale(1.04);
    transform: scale(1.04);
}
.pricing-table .pricing-option:hover i,
.pricing-table .pricing-option:hover span,
.pricing-table .pricing-option:hover b {
    color: #2567b8;
}
.pricing-table .pricing-option:hover .front {
    opacity: 0;
    visibility: hidden;
}
.pricing-table .pricing-option:hover .back {
    opacity: 1 !important;
    visibility: visible !important;
}
.pricing-table .pricing-option:hover .back a.button {
    -webkit-transform: translateY(0px) !important;
    transform: translateY(0px) !important;
}
.pricing-table .pricing-option hr {
    border: none;
    border-bottom: 1px solid #f0f0f0;
}
.pricing-table .pricing-option i {
    font-size: 3rem;
    color: #515855;
    transition: all 0.3s ease-in-out;
}
.pricing-table .pricing-option h2 {
    margin: 10px 0;
    color: #fff;
    transition: all 0.3s ease-in-out;
}
.pricing-table .pricing-option p {
    color: #fff;
    padding: 0 10px;
    line-height: 2;
}
.pricing-table .pricing-option .price {
    position: relative;
}
.pricing-table .pricing-option .price .front span.price {
    font-size: 2rem;
    text-transform: uppercase;
    margin-top: 20px;
    display: block;
    font-weight: 700;
    position: relative;
}
.pricing-table .pricing-option .price .front span.price b {
    position: absolute;
    font-size: 1rem;
    margin-left: 2px;
    font-weight: 600;
}
.pricing-table .pricing-option .price .back {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}
.pricing-table .pricing-option .price .back a.button {
    background: #2567b8;
    padding: 15px 20px;
    display: inline-block;
    text-decoration: none;
    color: white;
    position: absolute;
    font-size: 13px;
    top: -5px;
    left: 0;
    right: 0;
    width: 150px;
    margin: auto;
    text-transform: uppercase;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    transition: all 0.3s ease-in-out;
}
.pricing-table .pricing-option .price .back a.button:hover {
    background: #808080;
    cursor: pointer;
}

@media screen and (max-width: 600px) {
    .pricing-table .pricing-option {
        padding: 5%;
        width: 90%;
    }
    .pricing-table .pricing-option:nth-child(even) {
        margin: 30px 0 !important;
    }
}
