﻿
.wrapper {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 15px;
    margin: 10px;
}

.pricing-table {
    box-shadow: 0px 0px 18px #ccc;
    text-align: center;
    padding: 30px 0px;
    border-radius: 5px;
    position: relative;
    cursor:pointer;
}

    .pricing-table .head {
        border-bottom: 1px solid #eee;
        padding-bottom: 50px;
        transition: all 0.5s ease;
    }

    .pricing-table:hover .head {
        border-bottom: 1px solid white;
    }

    .pricing-table .head .title {
        margin-bottom: 20px;
        font-size: 20px;
        font-weight: 700;
    }

    .pricing-table .content .price {
        background: linear-gradient(to right, #fff 0%, #fff 100%);
        width: 90px;
        height: 90px;
        margin: auto;
        line-height: 90px;
        border-radius: 50%;
        border: 5px solid #fff;
        margin-top: -50px;
        transition: all 0.5s ease;
    }

    .pricing-table:hover .content .price {
        transform: scale(1.2);
    }

    .pricing-table .content .price h1 {
        color: #fff;
        font-size: 30px;
        font-weight: 700;
    }

    .pricing-table .content ul {
        list-style-type: none;
        margin-bottom: 20px;
        padding-top: 10px;
    }

        .pricing-table .content ul li {
            margin: 20px 0px;
            font-size: 14px;
            color: #555;
        }

    .pricing-table .content .sign-up {
        background: linear-gradient(to right, #004588 0%, #004588 100%);
        border-radius: 40px;
        font-weight: 500;
        position: relative;
        display: inline-block;
        margin:5px;
    }


    .pricing-table .btn {
        color: #fff;
        padding: 14px 40px;
        display: inline-block;
        text-align: center;
        font-weight: 600;
        -webkit-transition: all 0.3s linear;
        -moz-transition: all 0.3 linear;
        transition: all 0.3 linear;
        border: none;
        font-size: 14px;
        text-transform: capitalize;
        position: relative;
        text-decoration: none;
        margin: 2px;
        z-index: 9999;
        text-decoration: none;
        border-radius: 50px;
    }

        .pricing-table .btn:hover {
            box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
        }

        .pricing-table .btn.bordered {
            z-index: 50;
            color: #333;
        }


    .pricing-table .btn.bordered:after {
        background: #fff none repeat scroll 0 0;
        border-radius: 50px;
        content: "";
        height: 100%;
        left: 0;
        position: absolute;
        top: 0;
        -webkit-transition: all 0.3s linear;
        -moz-transition: all 0.3 linear;
        transition: all 0.3 linear;
        width: 100%;
        z-index: -1;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        transform: scale(1);
    }

    .pricing-table:hover .btn.bordered:after {
        opacity: 0;
        transform: scale(0);
    }

@media screen and (max-width:768px) {
    .wrapper {
        grid-template-columns: repeat(2,1fr);
    }
}

@media screen and (max-width:600px) {
    .wrapper {
        grid-template-columns: 1fr;
    }
}
