@import url(./common.css);
/* ---------------------Banner section start------------------------ */
#banner {
    background: linear-gradient(104.26deg, rgba(155, 158, 230, 0.4) -0.58%, rgba(190, 205, 238, 0.62) 19.13%, rgba(155, 158, 230, 0.5) 98.47%);
    text-align: center;
    padding: 40px 0px;
    color: #0C43A0;
}

#banner h6 {
    color: #F0524B;
    font-weight: 600;
    font-size: 22px;
    line-height: 40px;
}

#banner h1 {
    font-weight: 700;
    line-height: 70px;
    font-size: 45px;
}

#banner p {
    font-size: 22px;
    line-height: 40px;
    font-weight: 550;
}

#banner .price-btn-group {
    border-radius: 51px;
    margin-top: 30px;
    background-color: #F0F3FB;
    box-shadow: 0px 0px 3px 0px #00000040;
    padding: 5px;
}

#banner .price-btn-group .nav-item {
    padding-left: 0px;
    padding-right: 0px;
}

#banner .price-btn-group .nav-item:first-child {
    padding-left: 12px;
}

#banner .price-btn-group .nav-item:last-child {
    padding-right: 12px;
}

#banner .price-btn-group .nav-item button {
    color: #0C43A0;
    border-radius: 51px;
    font-size: 23px;
    font-weight: 550;
    line-height: 50px;
    width: 100%;
    margin: 0px;
}

#banner .price-btn-group .nav-item button.active {
    background: #F0524B;
    color: white;
    box-shadow: 0px 0px 4px 0px #00000040;
    font-weight: 500;
}

/* ---------------------Banner section end------------------------ */
/* ---------------------Price section start------------------------ */

.pricing-v2{
    background:#F2F4FB;
    padding:70px 5%;
}

.pricing-v2 .row{
    --bs-gutter-x:20px;
}

/* CARD */

.program-card{
    position:relative;
    height:100%;
    background:#fff;
    border-radius:20px;
    padding:28px 24px;
    display:flex;
    flex-direction:column;
    overflow:hidden;
    transition:.3s ease;
}

.program-card:hover{
    transform:translateY(-3px);
}

/* CARD COLORS */
.silver-card{
    border:1px solid #D7DBE8;
    box-shadow:
    0 2px 10px rgba(90,110,144,.08),
    0 10px 30px rgba(90,110,144,.12);
}

.gold-card{
    border:1px solid #C89030;
    background:#FCF9F1;
    box-shadow:
    0 2px 12px rgba(154,112,32,.08),
    0 12px 35px rgba(154,112,32,.12);
}

.platinum-card{
    border:1px solid #D8D0F2;
    box-shadow:
    0 2px 12px rgba(84,72,160,.10),
    0 12px 35px rgba(84,72,160,.18);
}

/* HEADER */

.card-header-top{
    display:flex;
    align-items:center;
    gap:8px;
    margin-bottom:14px;
}

.card-icon{
    width:40px !important;
    height:40px !important;
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.card-icon i{
    font-size:14px;
}
.silver-icon{
    background:#EEF1F8;
    color:#5A6E90;
    border:0.8px solid #7080A038;
}

.gold-icon{
    background:#F7EBCF;
    color:#9A7020;
    border:0.8px solid #A0782838;
}

.platinum-icon{
    background:#ECE7FF;
    color:#5448A0;
    border:0.8px solid #6050B033;
}

/* TAG */

.program-tag{
    /*height:22px;*/
    padding:5px 10px;
    border-radius:8px;
    font-size:12px;
    font-weight:600;
    display:flex;
    align-items:center;
}

.silver-card .program-tag{
    background:#EEF1F8;
    color:#5A6E90;
    border:0.8px solid #7080A038;
}

.gold-card .program-tag{
    background:#F7EBCF;
    color:#9A7020;
    border:0.8px solid #A0782838;
}

.platinum-card .program-tag{
    background:#ECE7FF;
    color:#5448A0;
    border:0.8px solid #6050B033;
}

/* MOST POPULAR */

.popular-badge{
    position:absolute;
    top:5px;
    right:5px;

    background:linear-gradient(
      90deg,
      #C89030,
      #A87020
    );

    color:#fff;
    border-radius:999px;
    height:28px;
    padding:0 12px;

    display:flex;
    align-items:center;
    gap:6px;

    font-size:10px;
    font-weight:600;

    box-shadow:
    0 4px 12px rgba(154,112,32,.35);
}

.popular-badge i{
    font-size:8px;
}

/* TITLE */

.program-card h3{
    font-size:25px;
    font-weight:700;
    line-height:34px;
    margin-bottom:4px;
}

.subtitle{
    font-size:14px;
    color:#8F96AD;
    margin-bottom:18px;
}

/* PRICE */

.price{
    font-size:30px;
    font-weight:800;
    padding:16px 18px;
    border-radius:12px;
    margin-bottom:18px;

    display:flex;
    align-items:center;

    box-shadow:
    inset 0 1px 1px rgba(255,255,255,.5);
}
.price span{
    font-size:12px;
    font-weight:600;
    opacity:.75;
    margin-left:6px;
}

.silver-card .price{
    background:#EEF1F8;
    color:#5A6E90;
    border:0.8px solid #7080A038;
}

.gold-card .price{
    background:#FAF3E1;
    color:#9A7020; 
    border:0.8px solid #A0782838;
}

.platinum-card .price{
    background:#ECE7FF;
    color:#5448A0;
    border:0.8px solid #6050B033;
}


/* DIVIDER */

.section-divider{
    position:relative;
    height:2.5px;
    margin:18px 0;
}

.silver-card .section-divider{
    background:linear-gradient(
        to right,
        transparent,
        #D9DFEB,
        transparent
    );
}

.gold-card .section-divider{
    background:linear-gradient(
        to right,
        transparent,
        #E5D6B8,
        transparent
    );
}

.platinum-card .section-divider{
    background:linear-gradient(
        to right,
        transparent,
        #DCD5F2,
        transparent
    );
}

/* SECTION HEADING */

.program-card h6{
    display:flex;
    align-items:center;
    gap:6px;

    font-size:11px;
    font-weight:700;
    letter-spacing:1.5px;
    text-transform:uppercase;

    color:#A0A6B8;
    margin-bottom:10px;
}

.silver-card h6 i{
    color:#5A6E90;
}

.gold-card h6 i{
    color:#9A7020;
}

.platinum-card h6 i{
    color:#5448A0;
}

/* BODY TEXT */

.program-card p{
    font-size:14px;
    line-height:1.8;
    color:#444;
}

.program-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.program-card ul li{
    position:relative;
    padding-left:15px;
    font-size:14px;
    line-height:1.8;
    margin-bottom:0px;
}

.silver-card .impact-list li::before{
    content:"•"; 
    position:absolute;
    left:0;
      top:-11px;
    font-size:25px;
    color:#5A6E90;
}

.gold-card .impact-list li::before{
    content:"•";
    position:absolute;
    left:0;
      top:-11px;
    font-size:25px;
    color:#9A7020;
}

.platinum-card .impact-list li::before{
    content:"•";
    position:absolute;
    left:0;
      top:-11px;
    font-size:25px;
    color:#5448A0;
}
.capabilities-list li{
    position:relative;
    padding-left:20px !important;
}
.capabilities-list li::before{
    font-family:"Font Awesome 6 Free";
    font-weight:900;
    content:"\f00c";
    position:absolute;
    left:0;
    top:6px;
    width:14px;
    height:14px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:8px;
}
.silver-card .capabilities-list li::before{
    color:#5A6E90;
    background:#EEF1F8;
    border:1px solid #D9DFEB;
}
.gold-card .capabilities-list li::before{
    color:#9A7020; 
    background:#F7EBCF;
    border:1px solid #E5D6B8;
}
.platinum-card .capabilities-list li::before{
    color:#5448A0;
    background:#ECE7FF;
    border:1px solid #DCD5F2;
}
/* TAGS */

.tags{
    display:flex;
    flex-wrap:wrap;
    gap:6px;
    margin-bottom:20px;
}

.tags span{
    font-size:12px;
    font-weight:500;
    padding:5px 12px;
    border-radius:999px;
}

.silver-card .tags span{
    background:#EEF1F8;
    color:#5A6E90;
}

.gold-card .tags span{
    background:#F5EAD0;
    color:#9A7020;
}

.platinum-card .tags span{
    background:#ECE7FF;
    color:#5448A0;
}

/* BUTTON */

.program-btn{
    margin-top:auto;

    width:100%;
    height:44px;

    border-radius:10px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;

    color:#fff;
    text-decoration:none;

    font-size:13px;
    font-weight:600;
}

.silver-card .program-btn{
    background:#5A6E90;
    box-shadow:
    0 6px 16px rgba(90,110,144,.30);
}

.gold-card .program-btn{
    background:linear-gradient(
      90deg,
      #C89030,
      #A87020
    );

    box-shadow:
    0 6px 16px rgba(154,112,32,.30);
}

.platinum-card .program-btn{
    background:#5448A0;

    box-shadow:
    0 6px 16px rgba(84,72,160,.30);
}

/* MOBILE */

@media(max-width:991px){

    .program-card{
        margin-bottom:20px;
    }

    .pricing-v2{
        padding:30px 15px;
    }
}

@media(max-width:576px){

    .program-card{
        padding:18px;
    }

    .price{
        font-size:16px;
    }

    .program-card h3{
        font-size:16px;
    }
}
/* ---------------------Price section end------------------------ */
/* ---------------------Popup-message section start------------------------ */

#popup-message .modal-body {
    padding: 0px;
}

#popup-message #popup-left {
    padding: 40px 24px 20px 24px;
}

#popup-message #popup-left h4 {
    line-height: 1.4;
    font-weight: 600;
}

#popup-message #popup-left p {
    font-size: 18px;
    line-height: 2.2;
}

#popup-message #popup-left .popup-card {
    background: #F0F3FB;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 30px;
}

#popup-message #popup-left .popup-card .popup-card-icon {
    width: 42px;
    height: 42px;
    line-height: 40px;
    border-radius: 2.5px;
    border: 0.5px solid #D9D9D9;
    background-color: white;
    text-align: center;
    display: inline-block;
    margin-bottom: 20px;
}

#popup-message #popup-left .popup-card .popup-card-icon img {
    max-width: 21px;
    max-height: 24px;
}

#popup-message #popup-left .popup-card p {
    line-height: 1.5;
}

#popup-message #popup-right {
    background: #F0F3FB;
    padding: 40px 0px 20px 20px;
    border-radius: 0px 8px 8px 0px;
}

#popup-message #popup-right .icon {
    background-color: white;
    height: 55px;
    width: 55px;
    line-height: 53px;
    text-align: center;
    border-radius: 50%;
    margin-right: 15px;
}

#popup-message #popup-right .content p {
    line-height: 28px;
}

#popup-message #popup-right .content p:last-child {
    font-size: 15px;
}

/* ---------------------Popup-message section end------------------------ */
/* ---------------------Right-choose section end------------------------ */
#right-choose {
    background: linear-gradient(276.67deg, rgba(155, 158, 230, 0.22) 1.64%, rgba(190, 205, 238, 0.22) 99.28%);
    padding: 45px 70px;
}

#right-choose #left-side {
    margin: 20px 0px;
}

#right-choose #left-side h2 {
    color: #0C43A0;
    line-height: 70px;
}

#right-choose #left-side p {
    font-size: 20px;
    color: #0C43A0;
    line-height: 40px;
    font-weight: 500;
    margin-top: 20px;
}

#right-choose #left-side div {
    margin-top: 40px;
}

#right-choose #left-side .big-btn {
    font-size: 20px;
    padding: 12px 25px;
    font-weight: 500;
}

#right-choose #left-side .big-btn .arrow {
    width: 25px;
    height: 25px;
}

#right-choose #left-side .book-btn {
    font-size: 20px;
    padding: 12px 16px;
    font-weight: 600;
    border: 2px solid #0C43A0;
    color: #0C43A0;
    transition: all 0.3s;
    border-radius: 9px;
    margin-left: 20px;
}

#right-choose #left-side .book-btn:hover {
    color: #F0524B;
    border-color: #F0524B;
}

#right-choose #right-side h3 {
    font-weight: 600;
    font-size: 32px;
    line-height: 70px;
    color: #0C43A0;
    margin-bottom: 20px;
}

#right-choose #right-side li {
    margin-bottom: 8px;
}

#right-choose #right-side li img {
    height: 36px;
    width: 36px;
}

#right-choose #right-side li h5 {
    line-height: 1.5;
}

#right-choose #right-side li p {
    font-weight: 550;
    line-height: 32px;
}
/* ---------------------Right-choose section end------------------------ */

/* ---------------------Responsive section start------------------------ */
/* ---------------------min-width:1400px------------------------ */
@media screen and (min-width:1400px) {
    #banner p {
        font-size: 23px;
        line-height: 50px;
        padding-inline: 50px;
    }
}
/* ---------------------min-width:1400px------------------------ */
/* ---------------------max-width:1260px------------------------ */
@media screen and (max-width:1260px) {
    
}
/* ---------------------max-width:1260px------------------------ */
/* ---------------------min-width:1200px------------------------ */
@media screen and (min-width:1200px) {
    #popup-message #popup-left h4 {
        font-size: 26px;
    }
}
/* ---------------------min-width:1200px------------------------ */
/* ---------------------max-width:1200px------------------------ */
@media screen and (max-width:1200px) {
    #right-choose #right-side h3 {
        font-size: 27px;
        line-height: 60px;
    }
}

/* ---------------------max-width:1200px------------------------ */
/* ---------------------min-width:1100px------------------------ */
@media screen and (min-width:1100px) {
    #price .row .col {
        padding-inline: 20px;
    }

}

/* ---------------------min-width:1100px------------------------ */
/* ---------------------max-width:1100px------------------------ */
@media screen and (max-width:1100px) {
    .trial-btn {
        font-size: 15px;
    }

    .trial-btn .arrow {
        width: 18px;
        height: 15px;
    }
}
/* ---------------------max-width:1100px------------------------ */

/* ---------------------max-width:1039px------------------------ */
@media screen and (max-width:1039px) {}
/* ---------------------max-width:1039px------------------------ */
/* ---------------------min-width:992px------------------------ */
@media screen and (min-width:992px) {
    #popup-message .modal-lg {
        --bs-modal-width: 950px !important;
    }
}
/* ---------------------min-width:992px------------------------ */
/* ---------------------max-width:992px------------------------ */
@media screen and (max-width:992px) {
    #banner h6 {
        font-size: 20px;
        line-height: 35px;
    }

    #banner h1 {
        line-height: 60px;
        font-size: 40px;
    }

    #banner p {
        font-size: 18px;
        line-height: 35px;
    }

    .trial-btn {
        font-size: 14px;
        padding-inline: 10px;
        line-height: 40px;
    }

    .trial-btn .arrow {
        width: 16px;
        height: 12px;
    }

}

/* ---------------------max-width:992px------------------------ */
/* ---------------------min-width:768px------------------------ */
@media screen and (min-width:768px) {
    #popup-message .modal-lg {
        --bs-modal-width: 600px;
    }
}

/* ---------------------min-width:768px------------------------ */
/* ---------------------max-width:768px------------------------ */
@media screen and (max-width:768px) {
    #banner h6 {
        font-size: 18px;
        line-height: 30px;
    }

    #banner h1 {
        line-height: 55px;
        font-size: 38px;
    }

    #banner p {
        font-size: 16px;
        line-height: 30px;
    }

    #right-choose {
        padding: 45px 40px;
    }

    #right-choose #left-side {
        margin: 10px 0px;
    }

    #right-choose #left-side h2 {
        line-height: 50px;
    }

    #right-choose #left-side p {
        font-size: 18px;
        line-height: 30px;
    }

    #right-choose #left-side div {
        margin-top: 30px;
    }

    #right-choose #left-side .big-btn {
        font-size: 20px;
        padding: 8px 15px;
    }

    #right-choose #left-side .big-btn .arrow {
        width: 20px;
        height: 20px;
    }

    #right-choose #left-side .book-btn {
        font-size: 20px;
        padding: 8px 10px;
        font-weight: 600;
        margin-left: 10px;
    }

    #right-choose #right-side h3 {
        font-size: 25px;
        line-height: 50px;
        margin-bottom: 10px;
        margin-top: 20px;
    }

    #right-choose #right-side li {
        margin-bottom: 8px;
    }

    #right-choose #right-side li img {
        height: 25px;
        width: 25px;
    }

    #right-choose #right-side li h5 {
        line-height: 1.2;
    }

    #right-choose #right-side li p {
        line-height: 25px;
    }
}

/* ---------------------max-width:768px------------------------ */
/* ---------------------max-width:641px------------------------ */
@media screen and (max-width:641PX) {
    #banner {
        padding: 30px 0px;
    }

    #banner h1 {
        line-height: 55px;
        font-size: 30px;
    }

    #banner p {
        font-size: 15px;
        line-height: 27px;
    }

}

/* ---------------------max-width:641px------------------------ */
/* ---------------------max-width:576px------------------------ */
@media screen and (max-width:576PX) {
    #banner {
        padding: 30px 0px;
    }

    #banner h1 {
        line-height: 50px;
        font-size: 25px;
    }

    #banner p {
        font-size: 15px;
        line-height: 25px;
    }

    #right-choose {
        padding: 40px 30px;
    }

    #right-choose #left-side {
        margin: 10px 0px;
    }

    #right-choose #left-side h2 {
        line-height: 40px;
    }

    #right-choose #left-side p {
        font-size: 16px;
        line-height: 25px;
    }

    #right-choose #right-side h3 {
        font-size: 22px;
        line-height: 40px;
    }

    #right-choose #right-side li img {
        height: 22px;
        width: 22px;
    }

    #right-choose #right-side li p {
        line-height: 22px;
    }
}
/* ---------------------max-width:576px------------------------ */
/* ---------------------max-width:500px------------------------ */
@media screen and (max-width:500px) {
    #right-choose #left-side .big-btn {
        font-size: 16px;
    }

    #right-choose #left-side .big-btn .arrow {
        width: 18px;
        height: 18px;
    }

    #right-choose #left-side .book-btn {
        font-size: 16px;
    }

    #right-choose {
        padding: 30px 20px;
    }

    #right-choose #right-side li img {
        height: 20px;
        width: 20px;
    }

    #right-choose #right-side li h5 {
        font-size: 17px;
    }

    #right-choose #right-side li p {
        font-size: 15px;
    }
}

/* ---------------------max-width:500px------------------------ */
/* ---------------------max-width:450px------------------------ */
@media screen and (max-width:450px) {
    #banner h1 {
        line-height: 40px;
        font-size: 22px;
    }

    #banner p {
        font-size: 13px;
        line-height: 22px;
    }

}
/* ---------------------max-width:450px------------------------ */
/* ---------------------max-width:405px------------------------ */
@media screen and (max-width:405px) {ne-height: 25px;
    }
}

/* ---------------------max-width:405px------------------------ */
/* ---------------------max-width:375px------------------------ */
@media screen and (max-width:375px) {
}

/* ---------------------max-width:375px------------------------ */
/* ---------------------Responsive section end------------------------ */