html {
    scroll-padding-top: 80px;
}

.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.hostingPackage {
    background-image: url(../assets/images/reserve.jpg);
}

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

.pricingSection .plan.hostingPackage.sslCertificate {
    background-image: url(../assets/images/sslcertificate.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: 90px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 20px;
    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 {
    margin: 20px 0 0 0;
    padding: 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;
    margin-bottom:50px;
}

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