
/* Pricing Plan */
.pricing-plan-section {
    position: relative;
    padding: 150px 0 120px;
}

.pricing-block .inner-box {
    position: relative;
    box-shadow: 0px 20px 40px 0px rgba(37, 59, 112, 0.1);
    margin-bottom: 30px;
    padding: 60px 40px;
    border-radius: 20px;
}

.pricing-block .inner-box:before {
    position: absolute;
    left: 40px;
    top: 0;
    content: '';
    height: 7px;
    width: 120px;
    border-radius: 3.5px;
}

.pricing-block .price {
    position: relative;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}

.pricing-block .price sub {
    color: #808080;
    font-size: 65%;
    bottom: 0;
}

.pricing-block h4 {
    position: relative;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f2f2f2;
}

.pricing-block h4:before {
    position: absolute;
    content: '';
    top: -20px;
    left: 150px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e8f9f3;
    z-index: -1;
    transition: .5s;
}

.pricing-block .inner-box:hover h4:before {
    transform: scale(1.5);
}

.pricing-block .content {
    position: relative;
    margin-bottom: 30px;
}

.pricing-block ul li {
    font-size: 16px;
    color: #0c1529;
    margin-bottom: 16px;
    padding-left: 40px;
    position: relative;
}

.pricing-block ul li:before {
    font-family: 'Font Awesome 5 Pro';
    content: "\f00c";
    position: absolute;
    left: 0;
    top: 4px;
    display: block;
    font-size: 11px;
    z-index: 5;
    font-weight: 400;
    color: #fff;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
}

.pricing-block ul li.unavailable:before {
    content: '';
    background-color: transparent;
    border: 1px solid #e3e3e3;
}

.pricing-block ul li.unavailable {
    color: #808080;
}

/* CTA Section */

.cta-section {
    position: relative;
    padding: 64px 0 35px;
    background-color: #e1f2ec;
}

.cta-section .shape {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.cta-section .shape-two {
    position: absolute;
    left: 20%;
    bottom: 46%;
}

.cta-section .image-block {
    position: relative;
    text-align: center;
    padding-left: 70px;
    padding-bottom: 70px;
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 30px;
}

.cta-section .image-block .image {
    overflow: hidden;
    border-radius: 50%;
}

.cta-section .image img {
    border-radius: 50%;
    transform: scale(1.02);
}

.cta-section .offer {
    position: absolute;
    box-shadow: -28.284px 28.284px 60px 0px rgba(37, 59, 112, 0.1);
    width: 200px;
    height: 200px;
    background-color: #fff;
    border-radius: 50%;
    font-size: 60px;
    font-weight: 700;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    left: -50px;
    bottom: 0;
}

.cta-section .offer h4 {
    font-size: 30px;
    font-weight: 700;
    line-height: 22px;
}

.cta-section .offer h4 span {
    font-size: 14px;
    color: #061a3a;
}

.cta-section .content {
    position: relative;
    margin-bottom: 30px;
}

.cta-section h2 {
    position: relative;
    font-size: 50px;
    line-height: 65px;
    font-family: 'Abril Fatface', cursive;
    letter-spacing: -1px;
    margin-bottom: 30px;
}

.cta-section .text {
    position: relative;
    margin-bottom: 30px;
    color: #061a3a;
}

/* CTA section style two */

.cta-section.style-two {
    background-color: #0c1529;
}

.cta-section.style-two .text {
    color: #fff;
}

.cta-section.style-two h2 {
    color: #fff;
}

.cta-section .shape-three {
    position: absolute;
    right: 10%;
    top: 10%;
}














