.pricingSection {
    background: #002d5e;
    padding: 70px;
}

.pricingSection .heading {
    text-align: center;
    color: white;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin-bottom: 30px;
}

.pricingSection .plan {
    padding: 0;
    text-align: center;
    color: #333;
    position: relative;
    margin: 4%;
    box-shadow: 1px 1px 10px 1px black;
    border-radius: 60px;
    transition: all 0.2s ease;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1);
}

.pricingSection .plan:hover {
    transform: scale(1.02);
}

.pricingSection .plan::before {
    position: absolute;
    content: " ";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #00000029;
    z-index: -1;
    border-radius: 60px;
}

.pricingSection .plan.bronze {
    background-image: url(../assets/images/bronze1.jpg);

}

.pricingSection .plan.silver {
    background-image: url(../assets/images/silver1.jpg);
}

.pricingSection .plan.gold {
    background-image: url(../assets/images/gold1.jpg);
}

.pricingSection .plan.premium {
    background-image: url(../assets/images/premium1.jpg);
}

.pricingSection .plan.ecommerce {
    background-image: url(../assets/images/ecommerce1.jpg);
}


.pricingSection .plan.custom {
    background-image: url(../assets/images/custom1.jpg);
}


/* --------------- */

.plan h3 {
    z-index: 1;
    font-size: 30px;
    font-weight: normal;
    width: 100%;
    height: 100px;
    background-color: #ef8400;
    padding-top: 20px;
    color: white;
    margin-bottom: 130px;
}

.plan .price {
    position: absolute;
    height: 130px;
    width: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 65px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 25px;
    font-weight: 600;
    color: #777;
    background: #fff;
    border: 5px solid #fff;
    box-shadow: 0 5px 20px inset, 0 3px 0 #0054ad inset;
}

/* --------------- */

.plan .signup {
    color: white;
    width: 150px;
    height: 50px;
    background-color: #002d5e;
    border: none;
}

.plan .signup:hover {
    transform: scale(1.01);
    background-color: #014995;
}

.plan .signup:active {
    transform: scale(0.99);
}

/* --------------- */

.plan ul {
    padding: 0px 40px 40px 40px;
    list-style: none;
}

.plan ul li {
    padding: 10px 0;
    border-top: 1px solid #979797;
    color: white;
    font-size: larger;
}

/* ---------------- */

.pricingSection small {
    display: block;
    text-align: center;
    color: white;
    font-size: 18px;
}

@media(max-width:420px){
    .pricingSection {
        background: #002d5e;
        padding: 40px;
    }
}